Android布局:一些ViewPager片段应由AppBar覆盖,一些应位于AppBar下方

时间:2017-06-22 18:06:04

标签: java android layout

我的布局包含带有工具栏和TabLayout的AppBarLayout。下面是一个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="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_height="wrap_content"
        android:layout_width="match_parent">

        <android.support.v7.widget.Toolbar android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:titleTextColor="@android:color/white"
            app:title="Titel">
        </android.support.v7.widget.Toolbar>

        <android.support.design.widget.TabLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/InfoViewTabs"
            app:tabTextColor="@color/colorTabNotSelected"
            app:tabSelectedTextColor="@color/colorTabSelected"
            android:background="?attr/colorPrimary">
        </android.support.design.widget.TabLayout>

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

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

由于appbar_scrolling_view_behavior,视图寻呼机的内容位于工具栏(A)下方。当我删除该行为时,ViewPager会延伸整个布局,AppBar将覆盖它的一部分(B)。 enter image description here 通常我想要行为A,因此ViewPagers片段的内容是完全可见的。但是现在我有一个片段会全屏显示(B),因为AppBar会通过OnPageChangeListener.onPageScrolled逐渐消失。

我的想法是删除行为,以便ViewPager始终处于全屏(B),然后以某种方式向下移动片段。但是我不想在这些片段的xml中加上一个上边距,因为我会选择什么值。无法将scrollbehavior添加到视图的子子节点。

如何实现这一目标? 这种布局的一个例子是WhatsApp。通常会显示标签布局,但是当您滑动到相机时,工具栏会淡化,下面的相机会全屏显示。

0 个答案:

没有答案