不折叠时Android折叠工具栏背景颜色

时间:2016-07-09 06:15:35

标签: android android-layout android-collapsingtoolbarlayout

在我的应用程序中,我使用图像标题折叠工具栏。当工具栏处于未折叠状态时(当标题可见时),由于标题图像的白色,工具栏上的图标不清晰可见。那么如何将非折叠状态下的工具栏颜色更改为半透明黑色。

我知道,为了在折叠状态下更改背景颜色,我们使用: - ContentScrim。

由于

1 个答案:

答案 0 :(得分:0)

自己创建scrim.xml,并使用FrameLayout将它放在背景ImageView和标题TextView之间的工具栏中。

<android.support.v7.widget.Toolbar
    android:id="@+id/tool_bar"
    android:theme="@style/ToolBarStyle"
    android:layout_width="match_parent"
    android:layout_height="80dp"
     >
    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="@drawable/background_img"
            android:scaleType="center"
            />
        <View android:background="@drawable/scrim"
            android:layout_height="match_parent"
            android:layout_width="match_parent"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="Your Title"
            android:textSize="@dimen/abc_text_size_title_material"
            android:textAlignment="center"
            />
    </FrameLayout>
</android.support.v7.widget.Toolbar>

创建res / drawable / scrim.xml(请根据需要调整alpha暗度)。

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle"
    >
    <gradient
        android:angle="-90"
        android:startColor="#00000000"
        android:centerColor="#00000000"
        android:endColor="#4d000000"
        android:type="linear" />
</shape>