Toobar在TabLayout上投下阴影

时间:2016-08-08 20:30:11

标签: android android-fragments material-design android-toolbar android-tablayout

大家好!我在活动中的FrameLayout容器中有一个片段,它有导航抽屉。片段有TabLayout。问题是,正如你所看到的那样 活动工具栏会在片段的TabLayout上删除阴影。我不想将TabLayout放在活动的AppBar布局中,因为我无法从片段访问它,而且,我不需要在其他任何地方使用TabLayout。

Screenshot

这是我的activity_main.xml

<?xml version="1.0" encoding="utf-8"?>

<include
    layout="@layout/app_bar_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

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

这是app_bar_main.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <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/loginToolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways|snap"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

    <FrameLayout
        android:id="@+id/mainFragmentContainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

这是fragment_by_day_schedule.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">

 <android.support.design.widget.TabLayout
     android:id="@+id/byDayTabLayout"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     app:tabBackground="?attr/colorPrimary"
     app:tabMode="scrollable" />

<android.support.v4.view.ViewPager
    android:id="@+id/byDayViewPager"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

</LinearLayout>

当我在ViewPager

中的片段中向上滚动列表时,我还希望隐藏工具栏

你有什么想法我怎么能做到这一点?

4 个答案:

答案 0 :(得分:3)

使用它。适用于我的项目。

ViewCompat.setElevation(mAppBarLayout, 0);

您的第二个问题是如何隐藏工具栏? 将父布局linearlayout更改为布局。

<android.support.design.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <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/loginToolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways|snap"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

    <FrameLayout
        android:id="@+id/mainFragmentContainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</android.support.design.widget.CoordinatorLayout>

在此之后你必须告诉android什么时候应该隐藏工具栏。您应该告诉哪个视图可以滚动。您已将此app:layout_behavior="@string/appbar_scrolling_view_behavior"添加到ViewPager中。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">

 <android.support.design.widget.TabLayout
     android:id="@+id/byDayTabLayout"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     app:tabBackground="?attr/colorPrimary"
     app:tabMode="scrollable" />

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

答案 1 :(得分:2)

来自支持资源库v24.0.0 AppBarLayout使用StateListAnimator进行设置提升。为了获得与24.0.0之前相同的行为,只需将animator设置为null并调用setElevation()

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    appbarLayout.setStateListAnimator(null);
}

ViewCompat.setElevation(appbarLayout, 0);

答案 2 :(得分:1)

你需要确保一切都有相同的高度。

答案 3 :(得分:1)

支持库v24.0.0中的AppBarLayout使用StateListAnimator。如果您在此新版本中使用,则设置appBayLayout.setElevation(0)将无效。

请尝试在StateListAnimator中将高程设置为0,如下所示Build.VERSION.SDK_INT >= 21

StateListAnimator stateListAnimator = new StateListAnimator();
stateListAnimator.addState(new int[0], ObjectAnimator.ofFloat(view, "elevation", 0));
appBarLayout.setStateListAnimator(stateListAnimator);