如何在工具栏中添加颜色渐变(Android)

时间:2018-01-31 15:22:11

标签: android xml android-studio toolbar

我想在工具栏中添加颜色渐变(应用栏/标题栏)。

我已经在可绘制的文件夹中创建了一个xml渐变文件,名为" side_nav_bar.xml"。

side_nav_bar.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
    android:angle="135"
    android:endColor="#7524f6"
    android:startColor="#2691f6"
    android:type="linear" />

我在互联网上找到了一些建议来创建一个新的自定义工具栏然后将其设置为背景图片等。但我没有足够的信息。

任何帮助都将受到高度赞赏。 感谢。

1 个答案:

答案 0 :(得分:3)

试试这个

ActionBar actionbar = getSupportActionBar();
actionbar.setBackgroundDrawable(getResources().getDrawable(R.drawable.side_bar_nav));