如何在colors.xml中使我的工具栏成为渐变?

时间:2016-06-13 10:33:07

标签: android android-studio ui-design

如何在colors.xml中将工具栏设为#11FFBD#AAFFA9之间的渐变?我的纯蓝色标头的代码是:

<color name="primary">#00BCD4</color>
<color name="primary_dark">#00838F</color>
<color name="primary_pressed">#0097A7</color>

1 个答案:

答案 0 :(得分:1)

在您的drawable文件夹中创建:gradient_toolbar.xml,如下所示

<shape xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="rectangle">

<gradient
android:type="linear"
android:startColor="#11FFBD"
android:endColor="#AAFFA9"
android:angle="270"/>
</shape>

在工具栏声明中添加以下内容:

<android.support.v7.widget.Toolbar

android:id="@id/toolbar"
android:background="@drawable/gradient_toolbar"

<!--your other attributes-->

/>