Android -- ListView控件 去上下滑动阴影 选中背景黄色

1.去除ListView上下滑动出现的黑色阴影,布局文件代码:


[html] view plain copy
  1. android:fadingEdge="none"


2. 去除默认的背景颜色黑色



[html] view plain copy
  1. android:cacheColorHint="#00000000"


3.去除选中的item黄色背景



[html] view plain copy
  1. android:listSelector="#00000000"


4. 去除item之间的黑线


java代码为:

[html] view plain copy
  1. msgList.setDivider(null);    


你可能感兴趣的:(listview控件,去上下滑动阴影,选中背景黄色)