Remove shadow from top and bottom of ListView in android?

前端 未结 6 1462
盖世英雄少女心
盖世英雄少女心 2020-12-29 17:59

I have created a custom listView with the row as follows:

 

        
6条回答
  •  悲&欢浪女
    2020-12-29 18:54

    It's work for me

    android:fadeScrollbars="false"
    android:fadingEdge="none"
    android:fadingEdgeLength="0dp"
    android:cacheColorHint="#00000000"
    android:overScrollMode="never"
    

提交回复
热议问题