我想在工具栏中添加颜色渐变(应用栏/标题栏)。
我已经在可绘制的文件夹中创建了一个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" />
我在互联网上找到了一些建议来创建一个新的自定义工具栏然后将其设置为背景图片等。但我没有足够的信息。
任何帮助都将受到高度赞赏。 感谢。
答案 0 :(得分:3)
试试这个
ActionBar actionbar = getSupportActionBar();
actionbar.setBackgroundDrawable(getResources().getDrawable(R.drawable.side_bar_nav));