5
AppBarLayoutのプライマリカラーをプログラムで設定しようとしています。 XMLレイアウトAndroidStudioのスクロールサンプルです:、スクリムの色をプログラムで設定する
int barColor = Color.parseColor("#FFC107");
AppBarLayout barLayout = (AppBarLayout) this.findViewById(R.id.app_bar);
if (barLayout != null) {
barLayout.setBackgroundColor(barColor);
}
toolbar.setBackgroundColor(barColor);
CollapsingToolbarLayout collapsingToolbarLayout = (CollapsingToolbarLayout) this.findViewById(R.id.toolbar_layout);
if (collapsingToolbarLayout != null) {
collapsingToolbarLayout.setBackgroundColor(barColor);
collapsingToolbarLayout.setContentScrimColor(barColor);
}
すべてが正常に動作します:
<android.support.design.widget.AppBarLayout android:id="@+id/app_bar"
android:fitsSystemWindows="true" android:layout_height="@dimen/app_bar_height"
android:layout_width="match_parent" android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout android:id="@+id/toolbar_layout"
android:fitsSystemWindows="true" android:layout_width="match_parent"
android:layout_height="match_parent" app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:contentScrim="?attr/colorPrimary">
<android.support.v7.widget.Toolbar android:id="@+id/toolbar"
android:layout_height="?attr/actionBarSize" android:layout_width="match_parent"
app:layout_collapseMode="pin" app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
そして活動で、私はAppBarLayout内のすべてのアイテムが黄色の背景を持つようにしたいので、私は設定しています私がツールバーをスクロールしている途中(FABが消えている正確な箇所)を除いて。その状態で、ツールバーの色はまだこの画像のようにデフォルト原色(青、ない黄色)、次のとおりです。
ので、二つの質問:
- 私は方法をしないのですコール?
- これらのシナリオのデバッグに関するヒントはありますか? Androidデバイスモニタのビュー階層のダンプでは、この色で着色されたビューがどれであるかはわかりません。
作品を、感謝します –
collapsingToolbar.setStatusBarScrimColor(赤色)ステータスバーの色は変更されません。 –