在项目中在首页有个列表也就是ListView,在没个item下面有二行文字,是那种有渐变背景色的,当时一时没想出来,后来就忘记了,刚好这几天闲着在逛<泡在网上的日子> 这是一个很好的学习android网站,无行看到,在这记录下,
在res下创建一个drawable文件夹,然后创建一个gradlient_background.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<gradient
android:startColor="#ffffff"
android:centerColor="#a8a8a8"
android:endColor="@android:color/transparent"
android:angle="90"
android:centerX="0.5"
android:centerY="0.5"
/>
</shape>
</item>
</selector>
这个引用就不必说了,相信大家都知道
在gradient里面有一下属性:
android:startColor ——起始颜色
android:centerColor ——中间颜色
android:endColor ——结束颜色
android:angle ——渐变的方向,0是从左到右,180是从右到左,90是从下到上,270是从上到下
android:type ——渐变的类型
android:centerX ——在图形内渐变起源点的X坐标
android:centerY ——在图形内渐变起源点的Y坐标