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

后端 未结 8 2227
臣服心动
臣服心动 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:33

    Simplest way is

    1. In case you are using AppCompat use

          app:iconifiedByDefault="false"
          app:searchIcon="@null"
      
    2. Else use android in place of app in above code as

      android:iconifiedByDefault="false"
      android:searchIcon="@null"
      

提交回复
热议问题