Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to focus and show soft keyboard when a EditText is shown in action bar?

I used ActionBarSherlock to create ActionBar it has a search button that shows an AutoCompleteEditText (SHOW_AS_COLLAPSIBLE_ACTION_VIEW) When Search button is clicked, EditText is shown, i want EditText to get focus and thus show the Soft Keyboard, as it's expanded this is the code

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getSupportMenuInflater().inflate(R.menu.activity_main, menu);

    boolean isLight = true;
    // Add Search button
    int menuItemId = menu
            .add("Search")
            .setIcon(
                    isLight ? R.drawable.ic_search_inverse
                            : R.drawable.ic_search)
            .setActionView(R.layout.collapsible_edittext)
            .setShowAsActionFlags(
                    MenuItem.SHOW_AS_ACTION_ALWAYS
                            | MenuItem.SHOW_AS_ACTION_COLLAPSE_ACTION_VIEW)
            .getItemId();
    // Add Search Topic (Sub Menu)
    SubMenu subMenu1 = menu.addSubMenu("Topic");
    subMenu1.add(Menu.NONE, 10, 0, "All Topics");
    subMenu1.add(Menu.NONE, 11, 1, "Adult");
    subMenu1.add(Menu.NONE, 12, 2, "Pediatric");
    subMenu1.add(Menu.NONE, 13, 13, "Drug");

    MenuItem subMenu1Item = subMenu1.getItem();
    subMenu1Item.setIcon(R.drawable.abs__ic_menu_moreoverflow_holo_light);
    subMenu1Item.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS);

    searchBar = (AutoCompleteTextView) menu.findItem(menuItemId)
            .getActionView().findViewById(R.id.etSearch);

    setSearchSettings(searchMenuID);

    // get instance of Search Button
    searchWidgetItem = menu.findItem(menuItemId);

    searchBar
            .setOnEditorActionListener(new EditText.OnEditorActionListener() {


                @Override
                public boolean onEditorAction(TextView v, int actionId,
                        KeyEvent event) {
                    if (actionId == EditorInfo.IME_ACTION_SEARCH) {

                        // Perform a Search
                        performSearch(v.getText().toString(),
                                (searchMenuID < 0) ? 3 : searchMenuID);

                        imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                        imm.hideSoftInputFromWindow(v.getWindowToken(), 0);

                        // Collapse the ActionView (Search Bar)
                        searchWidgetItem.collapseActionView();

                        // Clear the TextEdit
                        v.setText("");

                        return true;
                    }
                    return false;
                }
            });
    return true;
}

I tried to set a OnFocusChangeListener on EditText and show Soft Keboard if it has focus, but it didnt worked:

searchBar.setOnFocusChangeListener(new OnFocusChangeListener() {

            @Override
            public void onFocusChange(View v, boolean hasFocus) {
                if (hasFocus) {
                    imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                    imm.showSoftInput(v, InputMethodManager.SHOW_FORCED);
                }
            }
        });

How to do this ?

like image 470
Nevercom Avatar asked Oct 13 '12 18:10

Nevercom


2 Answers

Found the Solution:

searchWidgetItem.setOnActionExpandListener(new OnActionExpandListener() {

            @Override
            public boolean onMenuItemActionExpand(MenuItem item) {
                searchBar.post(new Runnable() {
                    @Override
                    public void run() {
                        searchBar.requestFocus();
                        imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                        imm.showSoftInput(searchBar,
                                InputMethodManager.SHOW_IMPLICIT);
                    }
                });
                return true;
            }

            @Override
            public boolean onMenuItemActionCollapse(MenuItem item) {

                return true;
            }
});
like image 110
Nevercom Avatar answered Nov 01 '22 11:11

Nevercom


If you still have the problem, so call the following method

imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, InputMethodManager.HIDE_IMPLICIT_ONLY);

instead of

imm.showSoftInput(searchBar, InputMethodManager.SHOW_IMPLICIT);
like image 34
Ayman Mahgoub Avatar answered Nov 01 '22 10:11

Ayman Mahgoub