网上大部分说在listview的属性中通过设置android:fadingEdge="none"来解决问题,需要说明的是是在2.3版本之前有效!
2.3之后的版本解决办法:
public class MyListView extends ListView {
public MyListView(Context context, AttributeSet
attrs) {
super(context, attrs);
if (Integer.parseInt(Build.VERSION.SDK) >=
9) {
this.setOverScrollMode(View.OVER_SCROLL_NEVER);
}
}
}
参考:http://blog.csdn.net/nanlus/article/details/8170618
解决ListView滑动上下出现阴影,布布扣,bubuko.com
原文:http://www.cnblogs.com/zfg-technology/p/3631186.html