gpt4 book ai didi

android - LinearLayout 内的 DrawerLayout 内的 RecyclerView 不可滚动/不可点击

转载 作者:太空宇宙 更新时间:2023-11-03 11:55:47 25 4
gpt4 key购买 nike

我已经调整了我的布局,以便抽屉导航显示在工具栏下方:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.Toolbar android:id="@+id/detail_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />


<android.support.v4.widget.DrawerLayout
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:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">



<android.support.v7.widget.RecyclerView
android:id="@+id/left_drawer"
android:scrollbars="vertical"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="left|start"
android:choiceMode="singleChoice"
android:divider="@null"
android:background="@color/colorPrimary"
/>

<android.support.design.widget.CoordinatorLayout
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" android:fitsSystemWindows="true"
tools:context=".JuceActivity" tools:ignore="MergeRootFrame">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/juce_view_container"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:orientation="horizontal" />

<android.support.design.widget.FloatingActionButton android:id="@+id/fab"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_gravity="center_vertical|start" android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/stat_notify_chat"
app:layout_anchor="@+id/juce_view_container" app:layout_anchorGravity="top|end" />

</android.support.design.widget.CoordinatorLayout>
</android.support.v4.widget.DrawerLayout>
</LinearLayout>

但是,现在drawer的Recycler View不会滚动,也不会响应点击事件。

我在这里错过了什么吗?

最佳答案

您的 RecyclerView 需要在 DrawerLayout 中最后列出,以获得正确的 z 顺序。目前,它在 CoordinatorLayout“下方”打开,这就是您无法通过触摸操作它的原因。将它移到 CoordinatorLayout 之后。

关于android - LinearLayout 内的 DrawerLayout 内的 RecyclerView 不可滚动/不可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33708003/

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