首页 > 系统 > Android > 正文

android中实现背景图片颜色渐变方法

2020-04-11 11:33:12
字体:
来源:转载
供稿:网友

常用,记录一下。
效果图:


首先新建xml文件  bg_gradient.xml

复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" > 
 
    <gradient 
        android:startColor="#55FF0000"  
        android:centerColor="#99A73C3C" 
        android:endColor="#99000000" 
        android:angle="270" 
        /> 
 
    <corners android:radius="0dip" /> 
 
</shape> 

在布局文件里面引用

复制代码 代码如下:

android:background="@drawable/bg_gradient"

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表