天天看點

android PullToRefreshListView 4.0上不能上拉重新整理

由于需要使用了PullToRefreshListView,在4.0及其以下的版本上使用都是好的,但是在4.1的系統上使用,發現不能滑動不能點選,經過查找發現需要在PullToRefreshListView.java中添加

@Override
		protected void onAttachedToWindow() {
			// TODO Auto-generated method stub
			super.onAttachedToWindow();
			setSelection(1);
		}
           

這樣即可