摘要: 网上大部分说在listview的属性中通过设置android:fadingEdge="none"来解决问题,需要说明的是是在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_ 阅读全文
posted @ 2014-03-28 17:43 Self_improve 阅读(538) 评论(0) 推荐(0) 编辑