I am doing an application where for example when i click on the image(it is a searchView)
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