我可以使用显示正确输出的自定义适配器设置列表视图。现在我想将每个列表视图项目的背景更改为渐变。如何做到这一点?
我的文件...
activity_main.xml....主 xml 文件
MainActivity.java....主要活动
Item.java.... 项目选择器方法
ItemAdaptor.... 自定义适配器
list_item.xml .....项目(textView)样式
我创建了我的渐变代码,就像..
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#FFFAFAFA"
android:centerColor="#FFFFFFFF"
android:endColor="#FFFAFAFA"
android:angle="90"/>
</shape>
还有我怎么能改变分隔符颜色,以及整个列表视图的背景颜色..