How to change searchview icon color?

后端 未结 9 1266
北海茫月
北海茫月 2020-12-19 13:19

I know there\'s already a lot of answers for this question here, and I wouldn\'t be creating another thread if I hadn\'t already tried everything I saw here. Anyway, the qu

9条回答
  •  伪装坚强ぢ
    2020-12-19 14:11

     final SearchView searchViewAndroidActionBar = (SearchView) MenuItemCompat.getActionView(searchViewItem);
            // change close icon color
            ImageView iconClose = (ImageView) searchViewAndroidActionBar.findViewById(android.support.v7.appcompat.R.id.search_close_btn);
            iconClose.setColorFilter(getResources().getColor(R.color.grey));
           //change search icon color
            ImageView iconSearch = searchViewAndroidActionBar.findViewById(android.support.v7.appcompat.R.id.search_button);
            iconSearch.setColorFilter(getResources().getColor(R.color.grey));
    

提交回复
热议问题