SwipeRefreshLayout 配合fragment 下拉重新整理的使用,超級簡單
阿新 • • 發佈:2019-01-07
前臺demo
<android.support.v4.widget.SwipeRefreshLayout
android:layout_width="match_parent"
android:id="@+id/swipe_container"
android:layout_height="wrap_content"
>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/test_record"
android:layout_marginBottom="50dp"
>
</ListView>
</android.support.v4.widget.SwipeRefreshLayout>
後臺的demo
因為介面是fragment 並不是一個activity,所以後臺demo寫在了
public void onActivityCreated(@Nullable Bundle savedInstanceState){}
這個方法裡面了,核心demo具體如下:
注意事項,我原來一直無法重新整理,是因為在方法onRefresh,裡面沒有寫載入資料的方法,仔細想一想,
做重新整理處理,肯定是請求資料,所以,initScore(); 這個方法是直接請求資料。加進去就OK 了。
mSwipeLayout.setColorSchemeResources(android.R.color.holo_blue_light, android.R.color.holo_red_light, android.R.color.holo_orange_light, android.R.color.holo_green_light);
mSwipeLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
my_record.setText("正在重新整理");
// TODO Auto-generated method stub
test_type.clear();
test_score.clear();
test_time.clear();
initScore();
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
my_record.setText("重新整理完成");
mSwipeLayout.setRefreshing(false);
}
}, 6000);
}
});
<android.support.v4.widget.SwipeRefreshLayout
android:layout_width="match_parent"
android:id="@+id/swipe_container"
android:layout_height="wrap_content"
>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/test_record"
android:layout_marginBottom="50dp"
>
</ListView>
</android.support.v4.widget.SwipeRefreshLayout>
後臺的demo
因為介面是fragment 並不是一個activity,所以後臺demo寫在了
public void onActivityCreated(@Nullable Bundle savedInstanceState){}
這個方法裡面了,核心demo具體如下:
注意事項,我原來一直無法重新整理,是因為在方法onRefresh,裡面沒有寫載入資料的方法,仔細想一想,
做重新整理處理,肯定是請求資料,所以,initScore(); 這個方法是直接請求資料。加進去就OK 了。
mSwipeLayout.setColorSchemeResources(android.R.color.holo_blue_light, android.R.color.holo_red_light, android.R.color.holo_orange_light, android.R.color.holo_green_light);
mSwipeLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
my_record.setText("正在重新整理");
// TODO Auto-generated method stub
test_type.clear();
test_score.clear();
test_time.clear();
initScore();
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
my_record.setText("重新整理完成");
mSwipeLayout.setRefreshing(false);
}
}, 6000);
}
});