Android导航抽屉与片段中的标签布局

问题描述 投票:1回答:1

我是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)。这有效,但没有导航drawe了,我必须按后退按钮!

android android-fragments android-navigation-drawer
1个回答
1
投票

我会给你一个实现这个的一般想法。

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

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

此外,所有片段共有的所有功能都应该只添加到基本活动中,而不是在任何地方重复相同的代码。

© www.soinside.com 2019 - 2024. All rights reserved.