gpt4 book ai didi

java - 工具栏干扰使用 SearchView 过滤 RecyclerView

转载 作者:行者123 更新时间:2023-12-01 16:18:32 26 4
gpt4 key购买 nike

我是 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

关于java - 工具栏干扰使用 SearchView 过滤 RecyclerView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62336018/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com