android 控件背景设置渐变色
程序员文章站
2022-06-27 19:36:00
...
在drawable文件夹创建xml文件 复制以下代码
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="135"
android:centerColor="#ffbf89"
android:endColor="@color/colorPrimary"
android:startColor="@color/colorPrimary"
android:type="linear" />
</shape>
angle:倾斜角度
centerColor:中部颜色
endColor:尾部颜色
startColor:头部颜色
使用时,把控件background属性设置为上面drawable文件
效果图: