安卓高级2 swipeReferenceLayout 使用案例 和完善其自定义上拉
swipeReferenceLayout 无法完成上来加载数据所以自定义了一个类
Activity.java
package qianfeng.com.swipelayoutdemo;
import android.graphics.Color;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v7.app.AppCompatActivity;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends AppCompatActivity {
private SwipeRefreshLayout swipeRefreshLayout;
private List<String> list = new ArrayList<>();
private ListView listView;
private ReferenceLayout referenceLayout;
private ListView referenceListView;
private ArrayAdapter<String> adapter;
private List<String> total = new ArrayList<>();
private Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
switch (msg.what) {
case 100:
adapter.notifyDataSetChanged();
referenceLayout.setRefreshing(false);
break;
case 200:
adapter.notifyDataSetChanged();
referenceLayout.setLoadingState(false);
break;
}
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
referenceListView = (ListView) findViewById(R.id.referenceListView);
adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, total);
referenceListView.setAdapter(adapter);
referenceLayout = (ReferenceLayout) findViewById(R.id.referenceLayout);
referenceLayout.setColorSchemeColors(Color.RED, Color.BLACK);
referenceLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
// 下拉刷新的监听器
total.clear();
initData(100);
}
});
referenceLayout.setOnLoadingListener(new ReferenceLayout.OnLoadingListener() {
@Override
public void onLoading() {
//上拉加载更多的监听器
initData(200);
}
});
initData(100);
adapter.notifyDataSetChanged();
}
private void initData(final int what) {
new Thread() {
@Override
public void run() {
super.run();
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
for (int i = 0; i < 20; i++) {
total.add("景田" + i);
}
handler.sendEmptyMessage(what);
}
}.start();
}
// 默认 swipeReferenceLayout 的用法
public void defaultView() {
swipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.swipeLayout);
listView = (ListView) findViewById(R.id.listView);
// 设置颜色
swipeRefreshLayout.setColorSchemeColors(Color.RED, Color.GREEN, Color.BLUE, Color.YELLOW);
for (int i = 0; i < 5; i++) {
list.add("xixi" + i);
}
ArrayAdapter adapte = new ArrayAdapter(this, android.R.layout.simple_list_item_1, list);
listView.setAdapter(adapte);
swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
Toast.makeText(MainActivity.this, "hahahah", Toast.LENGTH_SHORT).show();
// 刷新完成后 将刷新的View 隐藏掉
// swipeRefreshLayout.setRefreshing(false);
}
});
}
}
ReferenceLayout.java 自定义
package qianfeng.com.swipelayoutdemo;
import android.content.Context;
import android.support.v4.widget.SwipeRefreshLayout;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.AbsListView;
import android.widget.ListView;
/**
* Created by ${Mr.Zhao} on 2016/10/18.
*/
public class ReferenceLayout extends SwipeRefreshLayout implements AbsListView.OnScrollListener {
//2. 实例化接口对象
private OnLoadingListener listener;
private View footerView;
private ListView mListView;
private boolean isLoading = false;
//1. 定义 一个接口
public interface OnLoadingListener {
public void onLoading();
}
//3. 提供设置监听器的方法
public void setOnLoadingListener(OnLoadingListener listener) {
this.listener = listener;
}
// 4. 构造布局
public ReferenceLayout(Context context) {
super(context);
initFooterView(context);
}
public ReferenceLayout(Context context, AttributeSet attrs) {
super(context, attrs);
initFooterView(context);
}
// 实例化 一个 加载更多的时候的 底布局
private void initFooterView(Context context) {
footerView = LayoutInflater.from(context).inflate(R.layout.footer_layout, null);
}
// 6 创建一个方法 用来 添加或者移除 footerView
public void setLoadingState(boolean state) {
isLoading = state;
if (state) {
mListView.addFooterView(footerView);
} else {
mListView.removeFooterView(footerView);
}
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
// 5. 获取 ListView
int childCount = getChildCount();
if (childCount > 0) {
for (int i = 0; i < childCount; i++) {
View view = getChildAt(i);
if (view instanceof ListView) {
mListView = (ListView) view;
mListView.setOnScrollListener(this);
}
}
}
}
@Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
}
// 7 判断ListView 滑动到了 底部
@Override
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
if (firstVisibleItem + visibleItemCount == totalItemCount && !isLoading) {
setLoadingState(true);
listener.onLoading();
}
}
}
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="qianfeng.com.swipelayoutdemo.MainActivity">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="match_parent"></ListView>
</android.support.v4.widget.SwipeRefreshLayout>
<qianfeng.com.swipelayoutdemo.ReferenceLayout
android:id="@+id/referenceLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/referenceListView"
android:layout_width="match_parent"
android:layout_height="match_parent"></ListView>
</qianfeng.com.swipelayoutdemo.ReferenceLayout>
</RelativeLayout>
其上拉布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/footer_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="加载更多"
android:textSize="20sp" />
</LinearLayout>
安卓高级2 swipeReferenceLayout 使用案例 和完善其自定义上拉的更多相关文章
- Easyui入门视频教程 第09集---登录完善 图标自定义
目录 ----------------------- Easyui入门视频教程 第09集---登录完善 图标自定义 Easyui入门视频教程 第08集---登录实现 ajax button的使用 ...
- 安卓高级3 RecyclerView 和cardView使用案例
cardView: 添加依赖:在Studio搜索cardview即可 在V7包中 或者直接在gradle中添加 compile 'com.android.support:cardview-v7:24. ...
- 安卓高级8 SurfaceView案例三 结合mediaplay播放视频
我们知道mediaplay无法直接播放视频所以我们结合Surface package qianfeng.com.mediaplayerdemo; import android.media.MediaP ...
- 安卓高级8 SurfaceView案例二 自定义相机
效果:(由于不好录屏所以文字描述) 定一个SurfaceView 下方有几个按钮,点击确定可以拍照保存取消. 并且SurfaceView实时显示相机内容 package qianfeng.com.cu ...
- 安卓高级2 Volley框架的使用案例
初始化类: MyApp.java package qianfeng.com.day37_volley_pull.app; import android.app.Application; import ...
- 安卓高级 WebView的使用到 js交互
我们先来学习 怎么使用再到用js和安卓源生方法交互 WebView简单使用 此部分转载并做了补充 原博客 原因:比较简单不是很想在写,我只要写js交互部分 WebView可以使得网页轻松的内嵌到app ...
- 安卓高级9 用原生intent分享
大家都用过安卓app时发现有个分享按钮如下: 所以今天特此分享用用原生完成: package qianfeng.com.simplesharedemo; import android.content. ...
- 安卓高级1 -----Xutil3 和Picasso使用
Xutils3 Xutils由于内部使用httpclient然而在安卓5.0谷歌发现httpclient出现不稳定的情况.于6.0完全弃用,所以作者升级到Xutils3替换原本网络模块 配置环境(St ...
- 某PCBA企业应用易普优APS实现高级计划排程案例
一.项目介绍 1.生产计划现状 某PCBA企业(以下简称A企业)的产品生产是典型的多品种.小批量.多变化的生产模式.其中产品种类有1000多种,主流的200多种,每个月数百个生产订单,分解到工序以后的 ...
随机推荐
- 判断字符串的后缀.endswith()
可以用str.endswith('.jpg')来判断字符串是否以jpg结尾,返回True或者False
- Text-鼠标点击事件
from tkinter import * import webbrowser master=Tk() text=Text(master,width=50,height=20) text.pack() ...
- $rootscope说明
scope是AngularJS中的作用域(其实就是存储数据的地方),很类似JavaScript的原型链 .搜索的时候,优先找自己的scope,如果没有找到就沿着作用域链向上搜索,直至到达根作用域roo ...
- web前端HTML基础
一.HTML介绍 HTML全称是(Hypertext Markup Language, HTML)又称为超级文本标记语言,它主要his一种用于创建网页的标记语言,在本质上是浏览器可以识别的规则,我们按 ...
- .NET Core2.0+MVC 用session,cookie实现的sso单点登录
博主刚接触.NET Core2.0,想做一个单点登录的demo,所以参考了一些资料,这里给上链接: 1.http://www.cnblogs.com/baibaomen/p/sso-sequence- ...
- Android Studio安装、配置、第一个程序的那些坑
最近在上Android课,老师布置了量大题难的作业,然而出师未捷身先死,还没看题目,就被Android Studio的安装和环境配置搞得要死要死的,网上的教程也多也杂,良莠不齐,在经历了5小时通过的搜 ...
- 浅谈CSRF漏洞
前言: 看完小迪老师的CSRF漏洞讲解.感觉不行 就自己百度学习.这是总结出来的. 歌曲: 正文: CSRF与xss和像,但是两个是完全不一样的东西. xss攻击(跨站脚本攻击)储存型的XSS ...
- [HNOI 2015]接水果
Description 风见幽香非常喜欢玩一个叫做 osu!的游戏,其中她最喜欢玩的模式就是接水果. 由于她已经DT FC 了The big black, 她觉得这个游戏太简单了,于是发明了一个更 ...
- [SCOI2010]生成字符串
题目描述 lxhgww最近接到了一个生成字符串的任务,任务需要他把n个1和m个0组成字符串,但是任务还要求在组成的字符串中,在任意的前k个字符中,1的个数不能少于0的个数.现在lxhgww想要知道满足 ...
- [SDOI2008]烧水问题
题目描述 把总质量为1kg的水分装在n个杯子里,每杯水的质量均为(1/n)kg,初始温度均为0℃.现需要把每一杯水都烧开.我们可以对任意一杯水进行加热.把一杯水的温度升高t℃所需的能量为(4200*t ...