Remove the SearchIcon as hint in the searchView

后端 未结 13 2241
攒了一身酷
攒了一身酷 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:18

    androidx.appcompat.widget.SearchView

    If you use androidx.appcompat.widget.SearchView:

    You can hide the icon using this:

    val magImage = searchView.findViewById(androidx.appcompat.R.id.search_mag_icon) as ImageView
    magImage.layoutParams = LinearLayout.LayoutParams(0, 0)
    

提交回复
热议问题