Android ListView去掉顶部阴影

Android ListView去掉顶部阴影
转载自http://stackoverflow.com/questions/8878554/how-to-remove-fading-effect-from-listview
在XML中添加
android:fadingEdge="none"
但是该参数在API 14后被忽略,
所以API14后添加
android:fadingEdgeLength="0dp"

整体示例如下

 <ExpandableListView
        android:id="@+id/explistview_detail"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/line_course_detail_shadow"
        android:background="@color/bg_gray"
        android:divider="@null"
        android:fadingEdgeLength="0dp"
        android:scrollbars="none" >
 </ExpandableListView> 

你可能感兴趣的:(android,ListView,顶部阴影)