gpt4 book ai didi

java - 在工具栏支持操作栏中设置搜索不起作用,为什么?

转载 作者:行者123 更新时间:2023-12-02 12:20:46 25 4
gpt4 key购买 nike

我一直在尝试为我的应用添加/创建搜索功能!因此,在通过 Android 文档之后,我们进行了如何做到这一点的培训!我按照解释添加了它,但是当我单击搜索图标时它不起作用它没有响应,我什至无法输入任何要搜索的文本!我使用的是支持版本 25。

    <android.support.design.widget.CoordinatorLayout 
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">

<include layout="@layout/toolbar"/>

<android.support.v4.widget.NestedScrollView
android:id="@+id/myScrollingContent"
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
android:id="@+id/contentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_bar" />

</android.support.v4.widget.NestedScrollView>

<com.roughike.bottombar.BottomBar
android:id="@+id/bottom_bar"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_gravity="bottom"
app:bb_tabXmlResource="@xml/bottombar_tabs_three"
app:bb_behavior="shy"/>

</android.support.design.widget.CoordinatorLayout>

最佳答案

经过一番努力,我意识到该错误是由于协调器布局中的 View 包装引起的。所以Toolbar的点击并没有感觉被它后面添加的其他View占用了。所以我可以更改布局属性,但我决定使用相对布局。

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">

<include layout="@layout/toolbar"/>

<FrameLayout
android:id="@+id/contentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_bar" />

<com.roughike.bottombar.BottomBar
android:id="@+id/bottom_bar"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_gravity="bottom"
android:layout_alignParentBottom="true"
app:bb_tabXmlResource="@xml/bottom_bar_tabs" />

</RelativeLayout>

关于java - 在工具栏支持操作栏中设置搜索不起作用,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45812080/

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