Android studio 之 简单的颜色渐变

来源:互联网 发布:synchronized的优化 编辑:程序博客网 时间:2024/05/29 04:38

first:
drawable文件夹里建文件
内容:

<?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android">    <item>        <shape>            <gradient                android:angle="90"                android:startColor="#FF0000"                android:endColor="#0000ff"                android:type="linear" />        </shape>    </item></selector>

.xml file 直接 background应用 就OK

0 0