在导航活动中使用滚动活动

时间:2016-04-09 20:00:04

标签: android material-design

我的主要目标是在实施材料设计时使用带滚动活动的导航抽屉,使其看起来像这两者的组合:

Navigation Drawer Sample Image (Credits to Google)

Scrolling Activity Sample Image (Credits to Google)

截至目前,我正在通过将导航抽屉布局的xml与我的主要活动相关联,然后在导航抽屉布局的内容xml中包含滚动布局的xml来实现此目的。 / p>

它在对两种布局的xmls进行了许多小改动之后才开始工作,但我不觉得这是最佳方式,因为它会导致使用7 xmls以上曾经只参加过一次活动。

有人知道更好的方法吗?

1 个答案:

答案 0 :(得分:0)

您必须将滚动布局包含在导航布局中。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<include layout="@layout/activity_scrolling"/>
<android.support.design.widget.NavigationView
    android:id="@+id/navigation_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="true"
    app:headerLayout="@layout/nav_header_main"
    app:menu="@menu/activity_main_drawer"/>
</android.support.v4.widget.DrawerLayout>