带有片段布局的Android导航抽屉

时间:2019-03-22 00:44:16

标签: android android-fragments android-navigation-drawer

我是android的新手,我将设计这种对我来说很复杂的布局。这是main_activity.xml文件的代码:

<?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_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <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"
        tools:context=".MainActivity">

        <android.support.v4.view.ViewPager
            android:id="@+id/home_view_pager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:theme="@style/AppTheme.AppBarOverlay">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                app:popupTheme="@style/AppTheme.PopupOverlay" />

            <android.support.design.widget.TabLayout
                android:id="@+id/tab_layout_home"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

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

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

    <android.support.design.widget.NavigationView
        android:id="@+id/navigation_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        android:layout_gravity="start"
        app:headerLayout="@layout/nav_header"
        app:menu="@menu/menu_drawer"/>

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

基本上,我的主要活动中有一个导航抽屉和3个标签。这是一张图片:

enter image description here

一切正常,我很开心。


当我单击导航抽屉项目时,我启动了一个新的意图以打开一个新活动,这很好,但是抽屉当然会消失(因为新活动没有抽屉)。我想将抽屉始终放在屏幕上。

为使抽屉保留在屏幕上,我认为可以将上述XML的TabLayout放置为一个片段;这样,抽屉仍会在那里。但是我该怎么办呢?如何将TabLayout放在片段中,以便可以用TabLayout或其他片段替换该片段?

我认为我可以放一个FrameLayout而不是TabLayout,但是我不知道这是否是个好主意以及如何工作。有帮助吗?

还有类似this之类的问题,但它们对我没有帮助,因为我仍然被困在这里


更多。如果单击结果,则会启动ThisSeason活动,并且其中包含一些片段(包括ResultsFragments)。那行得通,但是没有导航窗口了,我必须按返回按钮!

1 个答案:

答案 0 :(得分:1)

我将为您提供实现此目的的一般思路。

  1. 为您的应用程序进行基本活动。
  2. 然后为每个活动制作片段,包括带有标签的屏幕。因此,如果您在导航视图中有5个项目,那么总共将创建6个片段。
  3. 在主活动xml和java文件中添加导航视图和相关功能。基本上,这将为基础活动添加导航视图,并且由于您使用的是片段,因此所有页面(片段)都将具有导航视图。

其他说明:您可以使多个子类处理特定的功能,例如用于处理actionMode,导航视图和更新工具栏中标题的功能。你明白了。

此外,所有片段共有的所有功能都应仅添加到基本活动中,而不是在各处重复相同的代码。