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 7093227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T08:24:46+00:00 2026-05-28T08:24:46+00:00

Sorry for asking another time help on this matter, but all others posts didn’t

  • 0

Sorry for asking another time help on this matter, but all others posts didn’t help.

Here’s the scenario: I have a Acivity (‘A’) that incorporates a Layout with a fragment inside. This fragment is swapped on user input. One of this fragments has a edittext inside, which I want to get focus on creation AND show the damn soft keyboard. So, in the onCreateView() of the fragment I use:



                mEt = (EditText) v.findViewById(R.id.et);
                mEt.setImeOptions(EditorInfo.IME_ACTION_DONE);
                mEt.requestFocus();

So, it works the first time, but if the fragment is replaced and re-created later, it gets the focus but the keyboard does not appear.

I tried to hide keyboard before the fragment is destroyed via:



        InputMethodManager keyboard = (InputMethodManager)
        ctx.getSystemService(Context.INPUT_METHOD_SERVICE);
        keyboard.hideSoftInputFromWindow(et.getWindowToken(), 0);

or to explicit show the keyboard via:



            InputMethodManager keyboard = (InputMethodManager)
                ctx.getSystemService(Context.INPUT_METHOD_SERVICE);
            keyboard.showSoftInput(et, 0);

but (as you can imagine by the fact I’m posting here 🙂 ), the problem stay.

I also desperatly thought about a activity/fragment problem and used same techniques with listeners on the activity, without luck.

Quite frustrated, please help 🙂

  • 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-05-28T08:24:46+00:00Added an answer on May 28, 2026 at 8:24 am

    I just solved this problem. We had an activity that swapped out multiple Fragments with text fields that needed focus and the keyboard.

    There are two ways to solve this, both of which I played with. This is the method I finally went with.

    @Override
    private View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        ...
        if (savedInstanceState != null && !savedInstanceState.isEmpty()){
          msDialogMessage = savedInstanceState.getString(STATE_DAILOG_MSG);
        } else{
          Utils.setKeyboardFocus(mEditTextUserName);
        }
        ...
    }
    
     /**
      * Used to set focus and show keyboard (if needed) for a specified text field
      * @author Ty Smith
      * @param primaryTextField
      */
     public static void setKeyboardFocus(final EditText primaryTextField) {
       (new Handler()).postDelayed(new Runnable() {
         public void run() {
           primaryTextField.dispatchTouchEvent(MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), MotionEvent.ACTION_DOWN, 0, 0, 0));
           primaryTextField.dispatchTouchEvent(MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis(), MotionEvent.ACTION_UP , 0, 0, 0));
         }
       }, 100);
     }
    

    Although if your fragments don’t play nice and the lifecycle methods aren’t calling right, you might consider my other way.

    I won’t post code, but just put the grab focus method in a custom listener and call it from the activity when you put the fragment to the front.

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

Sidebar

Related Questions

sorry for asking this question again but i didnt get much help on the
sorry for asking this, but i'm runnin' out of ideas i have this table:
i'm sorry for asking too many questions this days, but i really need ur
Sorry for the title but I don't know other way of asking. EDITED FOR
Sorry for this not being a real question, but Sometime back i remember seeing
Sorry for my ignorance here, but when I hear the word webserver, I immediately
Sorry if this sounds like a really stupid question, but I need to make
Sorry asking so many questions but believe me.. I tried Google first. :) When
sorry for asking this dumb question i will try to explain as good as
Sorry for asking, but how do I access myFunction() from someFunction ()? <script> $(document).ready(function()

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.