使用tablayout折叠工具栏

时间:2016-11-10 07:02:53

标签: android android-tablayout android-coordinatorlayout android-collapsingtoolbarlayout

我想要实现的目标:

enter image description here

此UI设计属于 Audio Beats

在这里我有什么

enter image description here

。当展开折叠工具栏时,问题是tablayout会在recyclerView后面。而且我也无法删除标题“Musico”或将其设置为Top粘贴。

我的xml是

<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_width="match_parent"
    android:layout_height="200dp"
    android:fitsSystemWindows="true"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|exitUntilCollapsed"
        >

        <ImageView
            android:id="@+id/backdrop"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            android:scaleType="centerCrop"
            android:src="@drawable/hp"
            app:layout_collapseMode="parallax"
            />
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            app:layout_scrollFlags="scroll|enterAlways"
            app:layout_collapseMode="pin"
            android:layout_width="match_parent"
            android:layout_height="90dp"
            app:popupTheme="@style/AppTheme.PopupOverlay" >

        </android.support.v7.widget.Toolbar>
        <android.support.design.widget.TabLayout
            android:id="@+id/tabs"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            app:tabGravity="center"
            android:layout_gravity="bottom"
            app:tabMode="scrollable" />
    </android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main"/>
</android.support.design.widget.CoordinatorLayout>

和content_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    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"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/activity_main"
app:behavior_overlapTop="30dp"
>

<android.support.v4.view.ViewPager
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/view_pager"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"></android.support.v4.view.ViewPager>
</RelativeLayout>

请帮忙。

3 个答案:

答案 0 :(得分:3)

在互联网上搜索一段时间后,我在GitHub上找到了Material View Pager by Florent37,它提供了我想要的相同功能。

答案 1 :(得分:0)

将TextView(MUsico)内部移动到工具栏并为工具栏提供自定义布局(它将保持在顶部)

布局不正确 请参阅:CollaspingLayoutwithviewpager

答案 2 :(得分:-2)

只需为Tab布局提供30dp的边距,并在必要时增加appbar布局的大小。