Android_1_渐变背景色

首先创建一个渐变背景色文件drawable-mdpi/bg_color.xml

 <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"> <!-- 指定圆角矩形的4个圆角半径 -->
<corners android:topLeftRadius="20dp"
android:topRightRadius="5dp"
android:bottomRightRadius="20dp"
android:bottomLeftRadius="5dp"
/>
<!-- 指定边框线条的宽度和颜色 -->
<stroke android:width="4dp" android:color="#f0f"/>
<!-- 指定使用渐变背景色 -->
<gradient android:startColor="#f00"
android:centerColor="#f0f"
android:endColor="#00f"
android:type="linear"
/>
</shape>

这样我们在布局文件中创建一个TextView,指定背景色为@drawable/bg_color即可

上一篇:Ehcart知识图谱----Ajex,JSON后台调用数据


下一篇:出现win8.1蓝屏重启故障该如何解决?