how to handle back button of Search View in android

帅比萌擦擦* 提交于 2019-12-04 02:30:32

If you use android.support.v7.widget.SearchView as menu item:

<menu
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <item
        android:id="@+id/action_search"
        android:title=""
        app:showAsAction="ifRoom|collapseActionView"
        app:actionViewClass="android.support.v7.widget.SearchView"/>
</menu>

You can handle back button (for expanded state) with:

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.menu, menu);
    MenuItem searchItem = menu.findItem(R.id.action_search);
    searchItem.expandActionView();
    MenuItemCompat.setOnActionExpandListener(searchItem, new MenuItemCompat.OnActionExpandListener() {
        @Override
        public boolean onMenuItemActionExpand(MenuItem item) {
            return true;
        }

        @Override
        public boolean onMenuItemActionCollapse(MenuItem item) {
            // Write your code here
            return true;
        }
    });
}

If you are using search dialog you can do something like this for Kotlin

override fun onOptionsItemSelected(item: MenuItem): Boolean {
    val id = item.itemId

    return if (id == R.id.search_button) {
        val searchManager = this.getSystemService(Context.SEARCH_SERVICE) as SearchManager
        searchManager.setOnDismissListener {
            // return the activity to the normal state
        }
        // set activity to search state then request search
        onSearchRequested()
    } else super.onOptionsItemSelected(item)

}

Here is a way of doing it -

@Override
public void onBackPressed() {

    // Write your code here

    super.onBackPressed();
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!