How to delete or change the searchview icon inside the SearchView actionBar?

后端 未结 8 2228
臣服心动
臣服心动 2020-12-17 04:57

\"screenshot\"

How to remove or change the search view icon inside the edittext? I am using the Appcompat libra

8条回答
  •  一个人的身影
    2020-12-17 05:28

    I used the menu item with the property app:actionViewClass="android.support.v7.widget.SearchView"

    On the activity I set:

    searchView = (SearchView) searchMenuItem.getActionView();
    searchView.setIconifiedByDefault(false);
    

    To remove the icon I did:

    ImageView searchIcon = (ImageView)searchView.findViewById(android.support.v7.appcompat.R.id.search_mag_icon);
    searchIcon.setImageDrawable(null);
    

提交回复
热议问题