SearchView like Google Play Video App

后端 未结 3 510
逝去的感伤
逝去的感伤 2020-12-17 19:03

I\'m trying to implement search interface in actionbar like in Google Play Video App (https://play.google.com/store/apps/details?id=com.google.android.videos). I think it is

相关标签:
3条回答
  • 2020-12-17 19:40

    I'm using not bad library for this: https://github.com/MiguelCatalan/MaterialSearchView

    0 讨论(0)
  • 2020-12-17 19:54

    @Quiny898 create a nice lib, have a look:

    https://github.com/Quinny898/PersistentSearch

    0 讨论(0)
  • 2020-12-17 19:58

    Use a standalone Toolbar and set it with an elevation, then inflate your menu in it.

    You can add this item to your menu:

    <item android:id="@+id/menu_search"
        android:title="@string/action_search"
        android:icon="@drawable/abc_ic_search_api_mtrl_alpha"
        pawesome:showAsAction="ifRoom|collapseActionView"
        pawesome:actionViewClass="android.support.v7.widget.SearchView"/>
    
    0 讨论(0)
提交回复
热议问题