我有一个带有导航抽屉的活动应用,可以在几个片段之间导航。该活动还有一个工具栏和一个标签布局,我有它,以便标签保持隐藏通过可见性 - 直到带有视图寻呼机的片段切换到。问题是选项卡式片段的内容隐藏在工具栏和选项卡显示下方。有任何想法吗?
主要活动布局:
<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/main_drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:visibility="visible">
<include
android:id="@+id/my_toolbar"
layout="@layout/app_bar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_alignParentLeft="false"
android:layout_alignParentTop="true"
app:layout_scrollFlags="enterAlways">
</include>
<android.support.design.widget.TabLayout
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@color/colorPrimary"
android:id="@+id/TabsDisplay"
app:tabMode="scrollable"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:visibility="gone"/>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/container"/>
</FrameLayout>
<!--The drawer stuff is below -->
<android.support.design.widget.NavigationView
android:id="@+id/main_navDrawer"
android:layout_width="@dimen/nav_drawer_width"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/navigation_drawer_header"
app:itemIconTint="@color/colorAccent"
app:itemTextColor="@color/colorSecondary_text"
app:menu="@menu/menu_nav_drawer"/>
工具栏布局:(我只是通过不同的尝试分开了它,并且从未合并过它。)
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="@dimen/abc_action_bar_default_height_material"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:layout_scrollFlags="enterAlways"/>
我有一个基本布局作为&#39;介绍页面&#39;现在只显示一个文本视图,它在启动时放入容器中,由导航抽屉中的其他片段替换。其中一个有一个viewpager,它可以显示tablayout,标签显示并正确加载文本和片段,但它们被工具栏/标签栏覆盖。我已经尝试将tablayout直接放入片段中,但之后它根本就没有显示,并且无法找到正确的方法来执行此操作。
Tabbed / Viewpager片段:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.view.ViewPager
android:layout_width="fill_parent"
android:layout_height="fill_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/tabTestVP"/>
</LinearLayout>
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:0)
使用相对布局并将以下属性赋予FrameLayout:
android:layout_below="@+id/toolbar"
确保首先将ID添加到工具栏
答案 1 :(得分:0)
您可以使用RelativeLayout代替层次结构中的第一个FrameLayout,并将Fragment容器与AppBarLayout下方对齐。 “机器人:layout_below =” @ ID / appBarLayout“