如何实现自定义SearchView布局?

时间:2016-03-07 20:33:37

标签: android searchview

我正在尝试实现自定义SearchView布局。我已成功更改了android.support.v7.appcompat.SearchView的许多属性,例如背景颜色和文本颜色,但我想要自定义更多。所以我创建了自己的search_view_layout.xml文件,但我无法弄清楚如何实现它。这是search_view_layout.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="horizontal"
              android:layout_gravity="top"
              android:background="#FFFFFF"
              android:layout_width="match_parent"
              android:layout_height="40dp"
              android:paddingLeft="5dp"
              android:paddingTop="5dp"
              android:paddingRight="5dp"
              android:paddingBottom="5dp"
              android:padding="5dp">

    <SearchView
        android:id="@+id/leftMenuSearch"
        android:background="#FFFFFF"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:queryHint="What are you looking for?"
        android:layout_weight="1"
        android:layout_marginEnd="5dp"
        android:layout_marginRight="5dp"
        android:maxWidth="1000dp"/>

    <Button
        android:id="@+id/cancel_button"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="4"
        android:background="@color/beanBlue"
        android:text="Cancel"
        android:textColor="#FFFFFF"/>

</LinearLayout>

这是我的menu_main.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:app="http://schemas.android.com/apk/res-auto"
      xmlns:tools="http://schemas.android.com/tools"
      xmlns:appcompat="http://schemas.android.com/apk/res-auto">
    <item android:id="@+id/action_search"
          android:title="Search"
          android:icon="@drawable/search_icon"
          app:showAsAction="always|collapseActionView"
          app:actionLayout="@layout/search_view_layout"
          app:actionViewClass="android.support.v7.widget.SearchView"/>

    <item android:id="@+id/action_cart"
          android:title="Cart"
          android:icon="@drawable/cart_icon"
          app:showAsAction="ifRoom"/>
</menu>

这是我的toolbar.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="#000000"
    android:elevation="5dp"
    android:contentInsetLeft="15dp"
    app:collapseIcon="@drawable/collapse_back_button">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Bean"
        android:layout_gravity="center"
        android:textColor="@color/beanBlue"
        android:id="@+id/toolbar_title"
        android:textSize="25sp"/>


</android.support.v7.widget.Toolbar>

这是按下搜索图标之前工具栏的样子:

Toolbar before Search

这就是我希望SearchView在按下搜索图标时的样子:

Toolbar with SearchView

如何在我的android项目中实现这个自定义SearchView布局?

1 个答案:

答案 0 :(得分:0)

final int layoutResId = a.getResourceId(R.styleable.SearchView_layout, R.layout.abc_search_view);
inflater.inflate(layoutResId, this, true);

我在android.support.v7.widget.SearchView.java找到了上面的代码,您可以在xml中定义自定义布局,只需添加app:layout="@layout/resId"

<强>通知

您必须阅读源代码以提供具有相同ID的所有视图,否则它将与NullPointerException一起崩溃。有关详细信息,您可以查看SearchView(Context context, AttributeSet attrs, int defStyleAttr)

的来源