SearchView like Google Play Video App

久未见 提交于 2019-11-27 18:04:04

问题


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


回答1:


@Quiny898 create a nice lib, have a look:

https://github.com/Quinny898/PersistentSearch




回答2:


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"/>



回答3:


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



来源:https://stackoverflow.com/questions/30775295/searchview-like-google-play-video-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!