欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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文件


效果图:

android 控件背景设置渐变色