我有一个片段,有时我想显示为全屏,有时也想显示为汉堡菜单的内容。
我用汉堡菜单设置了一个活动,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.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/my_drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".ui.SomeActivity"
>
<!-- tools:openDrawer="left"-->
<androidx.fragment.app.FragmentContainerView
android:id="@+id/my_menu_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"
android:name="com.example.myapplication.ui.WhateverFragment"
android:background="@color/someBackgroundColor"
tools:layout="@layout/brand_feed_fragment"
android:clickable="true" />
<!-- clickable had no effect actually -->
.... activity UI here
</androidx.drawerlayout.widget.DrawerLayout>
WhateverFragment
有一个RecyclerView,我在每个项目中添加一个OnClickListener
。当作为全屏活动的片段呈现时,将调用侦听器。
然而,当我点击"抽屉"中的任何位置时,它就会关闭,并且我的onclicklistener不会在我的片段中调用。
我错过了什么?
根据@Mike-M:
抽屉应列在<DrawerLayout>
标签的最后,以便正确接收触摸事件。也就是说,将您的<androidx.fragment.app.FragmentContainerView>
移动到activity UI here
中的所有内容之后。