How to add Search bar with edit text in toolbar

后端 未结 5 875
轮回少年
轮回少年 2020-12-28 20:17

I want to add search bar with edit text in toolbar like below image

My toolbar.xml:-

    


        
5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-28 20:52

    I like the TextEdit solution above for backward compatibility.

    Here are two more things to consider to achieve the original example:

    1. On the Activity xml TextEdit definition add:

    android:drawableStart="@android:drawable/ic_menu_search"

                                   // To add the magnifying glass.
    

    android:hint="@string/Search_Txt"

                                  // To add the hint message.
    
    1. On the String xml file add:

      string name="Search_Txt">Find your dil ki deal

                               // Customize your message here.
      

    Note: The SearchView alternative will require API 21.

    Enjoy.

提交回复
热议问题