アプリにスクロール ツールバーの独自の実装があります。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>