在使用CollapsingToolbarLayout在布局中设置FloatingActionButton时遇到一些问题。
来源:
我将这个项目用作基础:Android-Material-Design-for-pre-Lollipop
博客文章:Create a Parallax Scrolling Header with Tabs in Android
布局: 基本上,您在主布局中具有以下结构:
-CoordinatorLayout
-AppBar
-CollapsingToolbar
-Image (Parallax)
-Toolbar
-TabLayout
-ViewPager
然后,ViewPager的适配器提供每个选项卡的内容。
问题: 我希望某些标签具有自己的浮动操作按钮。由于并非所有选项卡都需要它,因此我想将其添加到ViewPager的适配器中。
但是在将按钮添加到页面布局时,使其显示在可滚动内容的滚动末尾,也就是说,您需要向下滚动折叠栏以查看浮动按钮。
相反,如果将FloatingActionButton添加到主布局(与ViewPager处于同一级别),则所有选项卡都使用单个“共享”按钮,因此您需要在PagerAdapter内容之间创建通信(在我的情况下)片段)和主要布局,以便:
第二个选项听起来不是很干净。
更新:
我注意到我的某些标签页中也有带页脚的列表,需要将其修剪到底部,并且在实现appbar_scrolling_view_behavior
之后也会被破坏=(
类似问题:
Collapsible Toolbar - Make Fragment Footer Always Visible in Android:开始提供赏金以寻求更干净的解决方案
我该如何解决这个问题?
MainLayout:
<?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:id="@+id/htab_maincontent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/htab_appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/htab_collapse_toolbar"
android:layout_width="match_parent"
android:layout_height="256dp"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"
app:titleEnabled="false">
<ImageView
android:id="@+id/htab_header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/header"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"/>
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.3"
android:background="@android:color/black"
android:fitsSystemWindows="true"/>
<android.support.v7.widget.Toolbar
android:id="@+id/htab_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_gravity="top"
android:layout_marginBottom="48dp"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
<android.support.design.widget.TabLayout
android:id="@+id/htab_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:tabIndicatorColor="@android:color/white"
app:tabSelectedTextColor="@android:color/white"
app:tabTextColor="@color/white_70"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/htab_viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.design.widget.CoordinatorLayout>