Android操作栏标题 - 更改背景颜色

时间:2016-05-01 04:37:51

标签: android

在我顶部的Android工具栏中,我在背景上使用渐变色。它工作正常,但我注意到标题包含在继承另一种渐变颜色的内容中。如何将标题的背景更改为透明?

<style name="Toolbar" parent="@style/ThemeOverlay.AppCompat.ActionBar">
    <item name="android:background">@drawable/toolbar_gradient</item>
</style>


<android.support.v7.widget.Toolbar
    android:id="@+id/my_toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:elevation="4dp"
    app:titleTextColor="@color/white"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:theme="@style/Toolbar"/>
  

[.. [x] ... y]

因此容器x包装标题并具有从工具栏y突出的背景颜色。

1 个答案:

答案 0 :(得分:0)

添加带有标题的自定义工具栏。

<android.support.v7.widget.Toolbar
    android:id="@+id/my_toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:elevation="4dp"
    app:titleTextColor="@color/white"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    app:theme="@style/Toolbar">
<TextView android:id="@+id/footer" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:textSize="25sp"
        android:singleLine="true" android:background="#07000000"
        android:textColor="#FFFFFF" android:text="rrrrr"
        android:layout_centerInParent="true"
        android:layout_alignParentBottom="true" />// set your background as you wish
</android.support.v7.widget.Toolbar>