SearchView like Google Play Video App

2019-01-24 08:23发布

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 SearchView widget but don't understand how do same customization: add up button inside it, set background, and expand the full width of actionbar

Play Video screenshot

3条回答
Anthone
2楼-- · 2019-01-24 08:25
Viruses.
3楼-- · 2019-01-24 08:39

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"/>
查看更多
祖国的老花朵
4楼-- · 2019-01-24 08:40
登录 后发表回答