如何在RecyclerView中实现SearchView

时间:2017-01-30 12:43:50

标签: android android-recyclerview searchview

我需要过滤RecyclerView中的选定值。我使用的是RecyclerViewSearchView

activity_main.xml
 <android.support.v7.widget.SearchView
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:id="@+id/search"
   android:hint="Enter any location"/>

<android.support.v7.widget.RecyclerView
    android:id="@+id/recyclerview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="8dp"
    android:layout_marginTop="50dp"
   />

dealer_item.xml

<android.support.v7.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
    android:id="@+id/card_view"
    android:layout_width="fill_parent"
    android:layout_height="100dp"
    card_view:cardCornerRadius="4dp"
    card_view:contentPadding="15dp">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:id="@+id/dealer_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

        <TextView
            android:id="@+id/dealer_loc"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>
</android.support.v7.widget.CardView>

我也有适配器,型号和MainActivity java文件。 请任何人帮助我。

1 个答案:

答案 0 :(得分:0)

我在下面的库中使用了SearchView功能, https://github.com/lapism/SearchView