我想在我的应用程序中添加一个搜索栏,类似于Zomato所做的。我已经搜索了很多,我已经学会了搜索界面是可行的方法,但我看到它已经添加到操作栏中,而我希望它在一些片段(固定活动)中。有没有其他方式可以添加搜索(zomato如何做到)?
是否有必要打开另一个活动来进行搜索,或者我可以打开另一个片段来做同样的事情?
答案 0 :(得分:0)
就像@pskink所说,你可以在你的布局中的任何地方添加SearchView,如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<SearchView
android:id="@+id/searchView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</SearchView>
</LinearLayout>