TableLayout 位于导航栏后面

Posted

技术标签:

【中文标题】TableLayout 位于导航栏后面【英文标题】:TableLayout goes behind Navigation bar 【发布时间】:2017-04-11 03:42:13 【问题描述】:

如您所见,我遇到了位于 NavigationBar 后面的 TableLayout 的问题:

这两个标签都有一个viewPager,其中包含了片段布局(TableLayout):

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
>
<TableRow
    android:layout_weight="1">
    <TextView
        android:layout_weight="1"
        android:text="/"
        android:textAlignment="center"
        android:background="@color/colorAccent"
        />
    <TextView
        android:layout_weight="1"
        android:text="8-9"
        android:textAlignment="center"/>
    <TextView
        android:layout_weight="1"
        android:text="9-10"
        android:textAlignment="center"/>
    <TextView
        android:layout_weight="1"
        android:text="10-11"
        android:textAlignment="center"/>
    <TextView
        android:layout_weight="1"
        android:text="11-12"
        android:textAlignment="center"/>
</TableRow>
<TableRow
    android:layout_weight="1"
    android:background="@color/colorAccent"
    >
    <TextView android:text="Sunday"
        android:gravity="center_horizontal"
        />
</TableRow>
<TableRow
    android:layout_weight="1"
    >
    <TextView android:text="Monday"
        android:gravity="center_horizontal"/>
</TableRow>
<TableRow
    android:layout_weight="1"
    android:background="@color/colorAccent"
    >
    <TextView android:text="Tuesday"
        android:gravity="center_horizontal"
        />
</TableRow>
<TableRow
    android:layout_weight="1">
    <TextView android:text="Wednesday"
        android:gravity="center_horizontal"/>
</TableRow>
<TableRow
    android:layout_weight="1"
    android:background="@color/colorAccent"
    >
    <TextView android:text="Thursday"
        android:gravity="center_horizontal"
        />
</TableRow>

这是 viewPager:

<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_
android:layout_>

<android.support.design.widget.AppBarLayout
    android:layout_
    android:layout_
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    >

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_
        android:layout_
        android:background="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

    <android.support.design.widget.TabLayout
        android:id="@+id/tabs"
        android:layout_
        android:layout_
        app:tabMode="fixed"
        app:tabGravity="fill"/>
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
    android:id="@+id/viewpager"
    android:layout_
    android:layout_
    app:layout_behavior="@string/appbar_scrolling_view_behavior"  />

【问题讨论】:

您找到解决方案了吗? 【参考方案1】:

在你的&lt;CoordinatorLayout/&gt;中添加这个属性

android:fitsSystemWindows="true"

【讨论】:

以上是关于TableLayout 位于导航栏后面的主要内容,如果未能解决你的问题,请参考以下文章

隐藏导航栏后面的 tableHeaderView

导航栏后面的内容

跨越导航栏后面的 UIViewController 背景图像?

设置约束后导航栏后面的 UITableView

CNContactViewController 隐藏导航栏

如何阻止我的 body 元素在导航栏后面滚动?