Android 渐变色背景

一、效果:

 

 

 二、实现:

1、在res/drawable中创建一个名称user_background_gradient.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <!-- 实现颜色渐变-->
    <gradient
        android:startColor="#C6FBFD"
        android:endColor="#2ECDFD"
        android:angle="0"
        />
</shape>

2、在布局中使用

<RelativeLayout
                android:layout_width="match_parent"
                android:background="@drawable/userinfo_background_gradient"
                android:layout_height="170dp"/>

 

3、参数说明

android:angle="0"//效果是:是从左到右,按照开始颜色到结束颜色来渲染的
android:angle="90"//效果是:是从下到上,按照开始颜色到结束颜色来渲染的
android:angle="180"//效果是:是从右到左,按照开始颜色到结束颜色来渲染的
android:angle="270"//效果是:是从上到下,按照开始颜色到结束颜色来渲染的

 

posted @ 2023-03-08 18:56  湘summer  阅读(437)  评论(0编辑  收藏  举报