首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android ListView元素空隙线自定义渐变效果(转)

2012-06-25 
Android ListView元素间隙线自定义渐变效果(转)Android ListView元素间隙线自定义渐变效果5人收藏此文章,?

Android ListView元素间隙线自定义渐变效果(转)

Android ListView元素间隙线自定义渐变效果5人收藏此文章,?我要收藏发表于5个月前 , 已有608次阅读 共5个评论1首先创建一个简单的ListView,并设置对应的属性1<ListView2?????android:id="@+id/artistsNameView"3?????android:layout_width="fill_parent"4?????android:layout_height="match_parent"5?????android:divider="@drawable/jblineshape"6?????android:dividerHeight="1sp">7?</ListView>1注意其中两句:对应的就是设置ListView中的Item之间的间隙线的,使用的一个XML文件:jblineshape.xml(实现的是渐变线的效果)2?3--->> android:divider="@drawable/jblineshape"4--->> android:dividerHeight="1sp"

?

01配置文件:jblineshape.xml,为渐变效果的,透明->白色->透明(可根据自己需要进行设置)02?03<?xml?version="1.0"?encoding="utf-8"?>04<shape?xmlns:android="http://schemas.android.com/apk/res/android"?>05????<gradient06????????android:startColor="#00000000"07????????android:centerColor="#FFFFFF"08????????android:endColor="#00000000"09????????/>10????<corners11????????android:radius="4dp"12????????/>13?14</shape>

?

效果图:

Android ListView元素空隙线自定义渐变效果(转)

热点排行