我在我的应用程序中有自己的滚动工具栏实现。在 Google http://android-developers.blogspot.de/2015/05/android-design-support-library.html的新设计库中,有一个用于滚动工具栏的新实现。那非常好且易于实现,但我的问题是有一些限制。我有一个工具栏,后面有一个图像和底部的标签条。如果我使用新的实现,我无法在图像滚动关闭的情况下获取工具栏,并且标签条不会消失。我可以得到带有图像的工具栏下的标签条,但这不是我的目标。
在左边这就是它正常工作的方式,但标签条不在图像顶部。在右边它是正确的,但是如果它滚动标签条就会消失
我希望我的意思很清楚,有人可以帮助我,谢谢。
我忘记了 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.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<WebView
android:id="@+id/wvTest"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.AppBarLayout
android:id="@+id/abTest"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="150dp"
app:layout_scrollFlags="scroll|enterAlways">
<ImageView
android:id="@+id/ivMainImageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/background" />
<View
android:id="@+id/vActionBarBackgroundHolder"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#37913C"
android:alpha="0" />
<android.support.v7.widget.Toolbar
android:id="@+id/tbTest"
android:layout_width="match_parent"
android:background="#00FFFFFF"
android:layout_height="65dp" />
</RelativeLayout>
<com.astuetz.PagerSlidingTabStrip
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="#37913C"/>
</android.support.design.widget.AppBarLayout>
右截图:
<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.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<WebView
android:id="@+id/wvTest"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.AppBarLayout
android:id="@+id/abTest"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="150dp"
app:layout_scrollFlags="scroll|enterAlways">
<ImageView
android:id="@+id/ivMainImageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/background" />
<View
android:id="@+id/vActionBarBackgroundHolder"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#37913C"
android:alpha="0" />
<android.support.v7.widget.Toolbar
android:id="@+id/tbTest"
android:layout_width="match_parent"
android:background="#00FFFFFF"
android:layout_height="65dp" />
<com.astuetz.PagerSlidingTabStrip
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="#8837913C"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
</android.support.design.widget.AppBarLayout>