2016-05-01 131 views
0

在我上面的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。

回答

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> 
+0

啊,這樣的想法在盒子外面!很好,謝謝! – user3622167