私はアプリのサポートとCoordinatorLayout
を使用します。私はCollapsingToolbarLayout
を実装してImageView
とToolbar
をスクロール時に隠すことができました。私はタブで苦労している - TabLayout
は崩壊していない、それは良いです。問題はそれがうまく見えないことです - 私はそれが背景として写真の下部を使用したいです。画像とappbarのタイトルをスクロールし、Androidではタブを残す
TabLayoutをCollapsingToolbarLayout
の範囲内で移動し、背景として画像を使用しますが、画面の上部にタブがあり、スクロールするときにタブが隠されるという2つの問題があります。
は、私はそれが絵
の一番下に座って効果を実現したいと他の部分は
離れてスクロールされたときには、画面の上部に滞在しますレイアウト:
<android.support.design.widget.CoordinatorLayout
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">
<android.support.design.widget.AppBarLayout
android:id="@+id/main.appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true"
>
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/main.collapsing"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|enterAlways|snap"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="4dp"
app:expandedTitleMarginEnd="64dp"
>
<ImageView
android:id="@+id/main.backdrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:fitsSystemWindows="true"
android:src="@drawable/digit1_hill"
app:layout_collapseMode="parallax"
/>
<android.support.v7.widget.Toolbar
android:id="@+id/main.toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_collapseMode="pin"
/>
<android.support.design.widget.TabLayout
android:id="@+id/main.tabs"
android:layout_width="fill_parent"
android:layout_height="?attr/actionBarSize"
app:tabSelectedTextColor="?android:attr/textColorPrimaryInverse"
app:tabIndicatorColor="?android:attr/textColorPrimaryInverse"
app:tabIndicatorHeight="4dp"
/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/dashboard.viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>
</android.support.design.widget.CoordinatorLayout>
:
、その後はあなたのcollapsedTitleTextAppearanceとしてこれを設定します。スクロールすると、ツールバーは非表示になり、タブはツールバーの位置に固定されます。私は正しい? – Masum
別の写真を追加しました。はい、タブ以外の画像付きのツールバーを非表示にしたいと思います。私はCollapsingToolbarLayoutの外でTabLayoutを動かすとこの効果を得ることができます。しかし、私は写真の上にタブを置くことはできません。 –