●使用XML的方式为背景添加渐变效果android
一、在res/drawable文件夹里添加一个jbshape.xml文件,而后写入以下代码:spa
<?
xml version="1.0" encoding="utf-8"
?>
<
shape
xmlns:android
="http://schemas.android.com/apk/res/android"
>
<
gradient
android:angle
="270"
android:centerColor
="#00FFFF"
android:centerX
="0.5"
android:centerY
="0.5"
android:endColor
="#666666"
android:startColor
="#0099FF"
/>
<
padding
android:bottom
="7dp"
android:left
="7dp"
android:right
="7dp"
android:top
="7dp"
/>
<
corners
android:radius
="4dp"
/>
</shape> xml
说明:utf-8
(1)shape节点配置的是图形的形式,主要包括方形、圆形等,上边代码为方形。io
(2)gradient节点主要配置起点颜色、终点颜色及中间点的颜色、坐标、渐变效果(0,90,180从左到右渐变,270从上到下渐变)默认从左到右。 配置
(3)corners节点配置四周圆角的半径。 coding