我需要在LinearLayout中使用SearchView,我必须支持API级别7及更高版本。是否可以使用support-v7库?这里的所有问题都是关于在操作栏中使用support-v7 searchview小部件。有没有人知道如何在布局中使用它?感谢。
答案 0 :(得分:10)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.SearchView
android:id="@+id/search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:queryHint="@string/search_hint"
app:iconifiedByDefault="false" />
</LinearLayout>