Remove the SearchIcon as hint in the searchView

后端 未结 13 2217
攒了一身酷
攒了一身酷 2020-12-03 09:59

I am doing an application where for example when i click on the image(it is a searchView)

\"enter

13条回答
  •  爱一瞬间的悲伤
    2020-12-03 10:25

    For androidx you can do like this

    ImageView magImage = (ImageView) searchView.findViewById(androidx.appcompat.R.id.search_mag_icon);
    magImage.setVisibility(View.GONE);
    magImage.setImageDrawable(null);
    

    It's work for me

提交回复
热议问题