Android 编程下去除 ListView 上下边界蓝色或黄色阴影
默认的情况下,在 ListView 滑动到顶部或者是底部的时候,会有黄色或者蓝色的阴影出现。在不同的版本上解决的方法是不同的,在 2.3 版本之前可以在 ListView 的属性中通过设置 android:fadingEdge="none" 来解决问题,但是在 2.3 及以上版本这中方法是无效的,这里,可以通过重写 ListView 用代码来设置模式,禁止其阴影的出现,以免影响美观。代码如下:
package com.sunzn.cview; import android.content.Context; import android.os.Build; import android.util.AttributeSet; import android.view.View; import android.widget.ListView; public class CustomListView extends ListView { public CustomListView(Context context) { super(context); } public CustomListView(Context context, AttributeSet attrs) { super(context, attrs); if (Integer.parseInt(Build.VERSION.SDK) >= 9) { this.setOverScrollMode(View.OVER_SCROLL_NEVER); } } }
专注移动互联网产品设计研发 分享最新的移动互联网产品和技术