web-dev-qa-db-fra.com

Ajouter une icône de recherche sur la barre d'action android

Bonjour les gars.

J'ai une icône de recherche dans la barre d'action comme image ci-dessous

enter image description here

Quand il est cliqué, je veux que la barre d'actions change en editText et ait une recherche icon à côté de editText

Je sais comment faire un editText avec une image, mais comment mettre le editText sur la barre d'action comme l'image ci-dessous? Et je veux faire la valeur d'affichage des données une fois que le editText a rempli de valeur. Dois-je utiliser l'intention?

enter image description here

C'est ce que j'ai essayé jusqu'à présent.

Activité A

 getData(deviceName, month); // retrieve data from `MySQL` and load into listView

        @Override
         public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            MenuInflater inflater = getMenuInflater();
            inflater.inflate(R.menu.create_menu, menu); 
            return true;
        }

        @Override
        public boolean onPrepareOptionsMenu(Menu menu) {
            mSearchAction = menu.findItem(R.id.search);
            return super.onPrepareOptionsMenu(menu);
        }

        @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            // Handle action bar item clicks here. The action bar will
            // automatically handle clicks on the Home/Up button, so long
            // as you specify a parent activity in AndroidManifest.xml.
            switch (item.getItemId()) {

                case R.id.search: // should I need to add intent ?
                    handleMenuSearch();
                    return true;

                case R.id.add: // create new file
                    View menuItemView = findViewById(R.id.add);
                    PopupMenu po = new PopupMenu(HomePage.this, menuItemView); //for drop-down menu
                    po.getMenuInflater().inflate(R.menu.popup_menu, po.getMenu());
                    po.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
                        public boolean onMenuItemClick(MenuItem item) {
                            //  Toast.makeText(MainActivity.this, "You Clicked : " + item.getTitle(), Toast.LENGTH_SHORT).show();
                            if ("Create New File".equals(item.getTitle())) {
                                Intent intent = new Intent(HomePage.this, Information.class);  // go to Information class
                                startActivity(intent);

                            } else if ("Edit File".equals(item.getTitle())) {
                                Intent intent = new Intent(HomePage.this, Edit.class);
                                startActivity(intent);
                            }
                            return true;
                        }
                    });
                    po.show(); //showing popup menu

            }
            return super.onOptionsItemSelected(item);
        }

        protected void handleMenuSearch(){
            ActionBar action = getSupportActionBar(); //get the actionbar

            if(isSearchOpened){ //test if the search is open

                action.setDisplayShowCustomEnabled(false); //disable a custom view inside the actionbar
                action.setDisplayShowTitleEnabled(true); //show the title in the action bar

                //hides the keyboard
                InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                imm.hideSoftInputFromWindow(edtSeach.getWindowToken(), 0);

                //add the search icon in the action bar
                mSearchAction.setIcon(getResources().getDrawable(R.mipmap.search));

                isSearchOpened = false;
            } else { //open the search entry

                action.setDisplayShowCustomEnabled(true); //enable it to display a
                // custom view in the action bar.
                action.setCustomView(R.layout.search_bar);//add the custom view
                action.setDisplayShowTitleEnabled(false); //hide the title

                edtSeach = (EditText)action.getCustomView().findViewById(R.id.edtSearch); //the text editor

                //this is a listener to do a search when the user clicks on search button
                edtSeach.setOnEditorActionListener(new TextView.OnEditorActionListener() {
                    @Override
                    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
                        if (actionId == EditorInfo.IME_ACTION_SEARCH) {
                            doSearch();
                            return true;
                        }
                        return false;
                    }
                });


                edtSeach.requestFocus();

                //open the keyboard focused in the edtSearch
                InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
                imm.showSoftInput(edtSeach, InputMethodManager.SHOW_IMPLICIT);


                //add the close icon
                mSearchAction.setIcon(getResources().getDrawable(R.mipmap.search));

                isSearchOpened = true;
            }
        }

      @Override
        public void onBackPressed() {
            if(isSearchOpened) {
                handleMenuSearch();
                return;
            }
            super.onBackPressed();
        }

        private void doSearch() {
    //
        }


    }

Capture d'écran de l'activité A

enter image description here

Lorsque l'icône de recherche est enfoncée, elle est censée être destinée à une autre page et avoir une icône de recherche sur le editText (exactement comme la deuxième image), mais ce n'est pas le cas. Il reste dans la même page.

enter image description here

C'est ce que je veux (de wechat)

Avant d'appuyer sur l'icône

enter image description here

Après avoir appuyé

enter image description here

18
Hoo

Ce nom de widget est: Android.support.v7.widget.SearchView

http://developer.Android.com/reference/Android/widget/SearchView.html

Dans votre menu:

 <item
        Android:id="@+id/action_search"
        Android:icon="@drawable/abc_ic_search_api_mtrl_alpha"
        Android:title="@string/srch"
        app:actionViewClass="Android.support.v7.widget.SearchView"
        app:showAsAction="ifRoom|collapseActionView" />

Java:

 @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.menu_main, menu);
        // Retrieve the SearchView and plug it into SearchManager
        final SearchView searchView = (SearchView) MenuItemCompat.getActionView(menu.findItem(R.id.action_search));
        SearchManager searchManager = (SearchManager) getSystemService(SEARCH_SERVICE);
        searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));

        return true;
    }

C'est exactement comme l'icône MaterialDesign.

Android:icon="@drawable/abc_ic_search_api_mtrl_alpha"
31
ʍѳђઽ૯ท