我是Android Studio的新手,因此无法成功使用SearchView实施“过滤RecyclerView”。搜索功能似乎工作正常,但似乎干扰了我的工具栏/标题。如果我不显示任何代码,请告诉我。谢谢。

Image of the issue

home_menu.xml

 xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<item
    android:id="@+id/app_bar_search"
    android:icon="@drawable/ic_search_black_24dp"
    android:title="@string/search"
    app:showAsAction="always"
    app:actionViewClass="android.widget.SearchView" />


activity_home.xml

RelativeLayout 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".HomeActivity"
android:id="@+id/home_rel"
>

<include layout="@layout/desc_toolbar" android:id="@+id/desc_toolbar"/>

<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/home_RV"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/desc_toolbar"
    android:layout_margin="5dp"
    />


desc_toolbar.xml

androidx.appcompat.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/desc_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="10dp">


    <TextView
        android:id="@+id/toolbar_title_txt"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_centerVertical="true"
        android:text="@string/app_name"
        android:textColor="@android:color/white"
        android:textSize="20sp"
        android:textStyle="bold"
        android:visibility="visible" />

最佳答案

您是否尝试过将desc_toolbar.xml中RelativeLayout的高度设置为wrap_content

10-08 17:11