1 SwipeRefreshLayout
修改布局文件,新增 SwipeRefreshLayout :
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:material="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
...
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipe_refresh_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
material:layout_behavior="@string/appbar_scrolling_view_behavior">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.v4.widget.SwipeRefreshLayout>
...
</android.support.design.widget.CoordinatorLayout>
...
</android.support.v4.widget.DrawerLayout>
這里我們把 RecyclerView 放在 SwipeRefreshLayout 中帝簇。
2 處理刷新
修改活動類:
public class MainActivity extends AppCompatActivity {
private SwipeRefreshLayout srl;
@Override
protected void onCreate(Bundle savedInstanceState) {
...
//處理刷新邏輯
srl = (SwipeRefreshLayout) findViewById(R.id.swipe_refresh_layout);//獲取 SwipeRefreshLayout 實例
srl.setColorSchemeResources(R.color.colorPrimary);//設(shè)置刷新進度條顏色
srl.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {//設(shè)置刷新監(jiān)聽器
@Override
public void onRefresh() {
refresh();
}
}
);
}
/**
* 刷新
*/
private void refresh() {
new Thread(new Runnable() {
@Override
public void run() {
try {
Thread.sleep(1000);//為了體現(xiàn)出刷新效果笑诅,所以這里休眠了線程
} catch (InterruptedException e) {
e.printStackTrace();
}
//切回主線程
runOnUiThread(new Runnable() {
@Override
public void run() {
initCats();//重新生成數(shù)據(jù)
adapter.notifyDataSetChanged();//通知數(shù)據(jù)已發(fā)生變化
srl.setRefreshing(false);//當刷新事件結(jié)束時,隱藏刷新進度條
}
});
}
}).start();
}
...
}
在 onCreate 方法中:
- 獲取 SwipeRefreshLayout 實例宣决。
- 設(shè)置刷新進度條顏色蘸劈。
- 設(shè)置刷新監(jiān)聽器。在監(jiān)聽器中調(diào)用 refresh() 方法尊沸。
在 refresh 方法中:
- 為了體現(xiàn)出刷新效果威沫,所以在此休眠了線程。一般情況下洼专,這里會與服務(wù)器進行交互棒掠,獲取數(shù)據(jù)。
- 利用 runOnUiThread() 切回主線程屁商。
- 在主線程中烟很,重新生成數(shù)據(jù),接著通知數(shù)據(jù)已發(fā)生變化棒假,最后隱藏刷新進度條溯职。
運行程序,向下拖動主界面帽哑,就會出現(xiàn)下拉刷新進度條谜酒,松手就會自動刷新圖片:
是不是很酷呀O(∩_∩)O~