Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9139543
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:24:05+00:00 2026-06-17T09:24:05+00:00

I am currently developing an app with Samsung Galaxy Tab 2 as my device.

  • 0

I am currently developing an app with Samsung Galaxy Tab 2 as my device.

My Code in the XML is:

<EditText
    android:id="@+id/analysis_text"
    style="@style/icon_text"
    android:imeOptions="actionDone"
    android:inputType="textMultiLine"
    android:onClick="onBtnClicked"
/>

When this code executes, the full screen data entry mode (Extract Mode) is triggered automatically only in certain situations.

I would like my users to get a full data entry screen while editing text in this control, regardless of the screen or positioning of the control.

Another rephrase of this question:
How do I force full screen data entry mode for EditText boxes in my activity no matter what the content is?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T09:24:06+00:00Added an answer on June 17, 2026 at 9:24 am

    I solved this issue, not really solved, but found a valid work-around.

    The workaround is that I designed a text editor (which looks similar to the fullscreen UI) and on click of each of those EditBoxes the new UI activity is triggerred (with the startActivityForResult() so that once they are completed control is handed back to the calling activity) and after completion of edit the text is transferred back into the main screen.

    I also ensured that those boxes which transfer the control do not take focus so that they immediately transfer control to the new UI.

    This way I have been able to implement a cancel button, which now actually allows the user to go back without saving the changes he accidentally makes.

    I am open to new ideas, but this has worked for me.

    Code in Activity:

    public void onBtnClicked(View v) {
        EditText current_text_box = (EditText) v;
    
        Intent intent = new Intent(ObservationActivity.this,
                TexteditorActivity.class);
        intent.putExtra("start_text", current_text_box.getText().toString());
        intent.putExtra("start_position", current_text_box.getSelectionStart());
        startActivityForResult(intent, v.getId());
    } 
    

    Code in XML:

    <EditText
        android:id="@+id/observation_text"
        style="@style/icon_text"
        android:focusable="false"
        android:imeOptions="flagNoExtractUi"
        android:inputType="textMultiLine"
        android:onClick="onBtnClicked" >
    </EditText>
    

    To create the full screen UI I used code, you can use any like (http://android-richtexteditor.googlecode.com/)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am currently developing an app which will be on Android Market. How can
I am currently developing an Android-App in Eclipse and trying to use a Library
I am currently developing an android app, there is always unexpected exception popup when
I'm currently developing the presentation layer of an android app. The api which I'm
I'm kinda noob to android so please bear with me. I'm currently developing app
I am currently developing an Android app i previously developed for IPhone. My Backend
I am currently developing an app for android .. how i can capture the
I'm currently developing an Android app, which loads events from a server using JSON
I'm currently developing an app using ASP.NET MVC3 and Entity Framework 4.1 Code First
i'm currently developing an app for both Android and iOS, thing is... I started

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.