zhuqiang1002 发表于 2013-1-14 17:55:16

ListView相关

1、ListView Item渐变背景
<shape xmlns:android="http://schemas.android.com/apk/res/android"      android:shape="rectangle">      <gradient          android:startColor="#ffffff"          android:endColor="#EDEDED"          android:angle="-90" /></shape>2、滑动整体黑色背景,解决方案:
android:cacheColorHint="#00000000"
3、加快滑动速度:
android:fastScrollEnabled = "true"
4、ListView对应Adapter的getView方法被调用很多遍
设置android:layout_height="fill_parent"或者android:layout_height="fill_parent"
5、ListView自定义Adapter优化getView()
Android ListView 自定义Adapter 并优化UI
6、ListView点击效果
android:listSelector="@drawable/listitem"
android:listSelector="@android:color/transparent" //点击透明,也就是没效果
页: [1]
查看完整版本: ListView相关