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 again but ppl seem to connect csrf only with form
Sorry for asking it again, there are already some questions about this keyword. But
Sorry for asking such a beginner question but I can't figure this out. I
i'm sorry for asking too many questions this days, but i really need ur
sorry for asking this dumb question i will try to explain as good as
I am new to Cstring, sorry for asking dumb question, please help. char string[10];
Sorry for the title but I don't know other way of asking. EDITED FOR
yes its a joomla question and im sorry to annoy but asking on the
Sorry asking so many questions but believe me.. I tried Google first. :) When
I am sorry to ask this question when it has already been asked but

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.