listview的特殊属性

<ListView
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:cacheColorHint="#00000000" 
       android:id="@+id/mlist" 
       android:listSelector="#00000000"/>

android:cacheColorHint="#00000000" :滑动无背景色变化
android:listSelector="#00000000"   :点击Item无背景色变化

你可能感兴趣的:(ListView)