android去掉滑動到頂部和底部的陰影html
<ListView android:id="@+id/listView" android:layout_width="match_parent" android:layout_height="wrap_content" android:cacheColorHint="#00000000" android:divider="@color/line_color" android:dividerHeight="0.5dp" android:fadingEdge="none" android:overScrollMode="never"> </ListView>
解釋一下listview用到的各個屬性java
去除拖動時默認的帶顏色的背景:
android:cacheColorHint="#00000000" android
去除ListView滑到頂部和底部時邊緣的黑色陰影:
android:fadingEdge="none" ide
去除下滑到底部,上拉時出現的帶陰影顏色區域
android:overScrollMode="never" htm
本文爲博主原創文章,轉載請註明出處blog
http://www.cnblogs.com/rencm/p/5919486.htmlclass