在我的xml文件中,我有一个recyclerView和一个导航抽屉布局。问题是,如果我将“抽屉布局”的代码放在RecyclerView的顶部,则显示抽屉布局,但RecyclerView变为空白。
如果执行相反的操作,则会填充RecyclerView,但导航抽屉中找不到该位置。这是xml的东西吗?这是此布局的xml代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
layout="@layout/app_bar"
android:id="@+id/app_bar" />
<android.support.v7.widget.RecyclerView
android:id="@+id/routes_recycler_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/fragment_navigation_drawer"
android:layout_width="@dimen/nav_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
app:layout="@layout/fragment_navigation_drawer"
android:name="com.findthewayapp.fragments.NavigationDrawerFragment"
tools:layout="@layout/fragment_navigation_drawer" />
</android.support.v4.widget.DrawerLayout>
</LinearLayout>
最佳答案
我们不将线性布局用于导航抽屉,而可以使用抽屉布局
请记住,android.support.v4.widget.DrawerLayout只能包含3个元素(按此顺序排列):
1.您的主页
2.左抽屉
3.右抽屉
在fragment_navigation_drawer布局中使用recylerview
<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">
<!-- Main Layout -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/container_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />
</LinearLayout>
<FrameLayout
android:id="@+id/container_body"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
<!-- Left Drawer -->
<fragment
android:id="@+id/fragment_navigation_drawer"
android:layout_width="@dimen/nav_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
app:layout="@layout/fragment_navigation_drawer"
android:name="com.findthewayapp.fragments.NavigationDrawerFragment"
tools:layout="@layout/fragment_navigation_drawer" /></android.support.v4.widget.DrawerLayout>
关于android - Android RecyclerView和DrawerLayout相互覆盖,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31421583/