宝剑锋从磨砺出,梅花香自苦寒来。这篇文章主要讲述Android ---------- 下拉刷新,上拉加载相关的知识,希望能为你提供帮助。
【Android ---------- 下拉刷新,上拉加载】视图布局部分:
< com.Widget.StateFrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
app:dataErrorLayoutResId="@layout/widget_dataerror"
app:emptyLayoutResId="@layout/widget_dataempty"
app:loadingLayoutResId="@layout/widget_data_loading"
app:needLoginLayoutResId="@layout/widget_needlogin"
app:netErrorLayoutResId="@layout/widget_neterror"
app:timeOutLayoutResId="@layout/widget_timeout"
>
< com.Widget.ASwipeRefreshLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
>
< android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content" />
< /com.Widget.ASwipeRefreshLayout>
< /com.Widget.StateFrameLayout>
控制器部分:
// 设置上拉加载更多
swipelayoutyoudan.setOnLoadMoreListener(new ASwipeRefreshLayout.OnLoadMoreListener() {
@Override
public void onLoadMore() {
pageindex+=1;
requestData(false);
}
});
//设置下拉刷新
swipelayoutyoudan.setOnRefreshListener(new ASwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
pageindex=1;
requestData(false);
}
});
推荐阅读
- Android ---------- 富文本构建
- application.properties to application.yml
- Android应用开发基本流程
- 自动代还信用卡APP软件
- this指向问题(callapplyblind),自我理解的
- Java并发(happens-before)
- appium定位toast消息的使用
- 网易云易盾中标浙报反作弊服务 助力浙江新闻App健康发展
- Android自定义圆形ProgressBar