xListView上拉加载下拉刷新

本文章给出自定义的listview,Fragment展示数据,相应xml布局和时间格式转换的方法


/****************************自定义listview****************************************************/

import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.view.animation.LinearInterpolator;
import android.view.animation.RotateAnimation;
import android.widget.AbsListView;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.AbsListView.OnScrollListener;

public class AutoListView extends ListView implements OnScrollListener {


// 区分当前操作是刷新还是加载
public static final int REFRESH = 0;
public static final int LOAD = 1;


// 区分PULL和RELEASE的距离的大小
private static final int SPACE = 20;


// 定义header的四种状态和当前状态
private static final int NONE = 0;
private static final int PULL = 1;//拉
private static final int RELEASE = 2;//释放
private static final int REFRESHING = 3;//刷新
private int state;


private LayoutInflater inflater;
private View header;
private View footer;
private TextView tip;
private TextView lastUpdate;//最后一次更新时间
private ImageView arrow;
private ProgressBar refreshing;


private TextView noData;
private TextView loadFull;
private TextView more;
private ProgressBar loading;


private RotateAnimation animation;
private RotateAnimation reverseAnimation;//反向动画


private int startY;


private int firstVisibleItem;
private int scrollState;
private int headerContentInitialHeight;//初始高度
private int headerContentHeight;


// 只有在listview第一个item显示的时候(listview滑到了顶部)才进行下拉刷新, 否则此时的下拉只是滑动listview
private boolean isRecorded;//记录,说明
private boolean isLoading;// 判断是否正在加载
private boolean loadEnable = true;// 开启或者关闭加载更多功能
private boolean isLoadFull;//是否加载全部
private int pageSize = 10;


private OnRefreshListener onRefreshListener;
private OnLoadListener onLoadListener;


public AutoListView(Context context) {
super(context);
initView(context);
}


public AutoListView(Context context, AttributeSet attrs) {
super(context, attrs);
initView(context);
}


public AutoListView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
initView(context);
}


// 下拉刷新监听
public void setOnRefreshListener(OnRefreshListener onRefreshListener) {
this.onRefreshListener = onRefreshListener;
}


// 加载更多监听
public void setOnLoadListener(OnLoadListener onLoadListener) {
this.loadEnable = true;
this.onLoadListener = onLoadListener;
}


public boolean isLoadEnable() {
return loadEnable;
}


// 这里的开启或者关闭加载更多,并不支持动态调整
public void setLoadEnable(boolean loadEnable) {
this.loadEnable = loadEnable;
this.removeFooterView(footer);
}


public int getPageSize() {
return pageSize;
}


public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}


// 初始化组件
private void initView(Context context) {


// 设置箭头特效
animation = new RotateAnimation(0, -180,
RotateAnimation.RELATIVE_TO_SELF, 0.5f,
RotateAnimation.RELATIVE_TO_SELF, 0.5f);
//LinearInterpolator,时间插值类,其主要使用在动画中,其作用主要是控制目标变量的变化值进行对应的变化。
animation.setInterpolator(new LinearInterpolator());
animation.setDuration(100);
animation.setFillAfter(true);


reverseAnimation = new RotateAnimation(-180, 0,
RotateAnimation.RELATIVE_TO_SELF, 0.5f,
RotateAnimation.RELATIVE_TO_SELF, 0.5f);
reverseAnimation.setInterpolator(new LinearInterpolator());
reverseAnimation.setDuration(100);
reverseAnimation.setFillAfter(true);


inflater = LayoutInflater.from(context);
footer = inflater.inflate(R.layout.listview_footer, null);
loadFull = (TextView) footer.findViewById(R.id.loadFull);
noData = (TextView) footer.findViewById(R.id.noData);
more = (TextView) footer.findViewById(R.id.more);
loading = (ProgressBar) footer.findViewById(R.id.loading);


header = inflater.inflate(R.layout.pull_to_refresh_header, null);
arrow = (ImageView) header.findViewById(R.id.arrow);
tip = (TextView) header.findViewById(R.id.tip);
lastUpdate = (TextView) header.findViewById(R.id.lastUpdate);
refreshing = (ProgressBar) header.findViewById(R.id.refreshing);


// 为listview添加头部和尾部,并进行初始化
headerContentInitialHeight = header.getPaddingTop();
measureView(header);
headerContentHeight = header.getMeasuredHeight();
topPadding(-headerContentHeight);
this.addHeaderView(header);
this.addFooterView(footer);
this.setOnScrollListener(this);
}


public void onRefresh() {
if (onRefreshListener != null) {
onRefreshListener.onRefresh();
}
}


public void onLoad() {
if (onLoadListener != null) {
onLoadListener.onLoad();
}
}


public void onRefreshComplete(String updateTime) {
lastUpdate.setText(this.getContext().getString(R.string.lastUpdateTime,
DateTools.getCurrentTime()));
state = NONE;
refreshHeaderViewByState();
}


// 用于下拉刷新结束后的回调
public void onRefreshComplete() {
String currentTime = DateTools.getCurrentTime();
onRefreshComplete(currentTime);
}


// 用于加载更多结束后的回调
public void onLoadComplete() {
isLoading = false;
}


public void onScroll(AbsListView view, int firstVisibleItem,
int visibleItemCount, int totalItemCount) {
this.firstVisibleItem = firstVisibleItem;
}


public void onScrollStateChanged(AbsListView view, int scrollState) {
this.scrollState = scrollState;
ifNeedLoad(view, scrollState);
}


// 根据listview滑动的状态判断是否需要加载更多
private void ifNeedLoad(AbsListView view, int scrollState) {
if (!loadEnable) {
return;
}
try {
if (scrollState == OnScrollListener.SCROLL_STATE_IDLE
&& !isLoading
&& view.getLastVisiblePosition() == view
.getPositionForView(footer) && !isLoadFull) {
onLoad();
isLoading = true;
}
} catch (Exception e) {
}
}


/**
* 监听触摸事件,解读手势
*/
@Override
public boolean onTouchEvent(MotionEvent ev) {
switch (ev.getAction()) {
case MotionEvent.ACTION_DOWN:
if (firstVisibleItem == 0) {
isRecorded = true;
startY = (int) ev.getY();
}
break;
case MotionEvent.ACTION_CANCEL://取消
case MotionEvent.ACTION_UP:
if (state == PULL) {
state = NONE;
refreshHeaderViewByState();
} else if (state == RELEASE) {
state = REFRESHING;
refreshHeaderViewByState();
onRefresh();
}
isRecorded = false;
break;
case MotionEvent.ACTION_MOVE:
whenMove(ev);
break;
}
return super.onTouchEvent(ev);
}


// 解读手势,刷新header状态
private void whenMove(MotionEvent ev) {
if (!isRecorded) {
return;
}
int tmpY = (int) ev.getY();
int space = tmpY - startY;
int topPadding = space - headerContentHeight;
switch (state) {
case NONE:
if (space > 0) {
state = PULL;
refreshHeaderViewByState();
}
break;
case PULL:
topPadding(topPadding);

//SCROLL_STATE_TOUCH_SCROLL:正在滚动
if (scrollState == SCROLL_STATE_TOUCH_SCROLL
&& space > headerContentHeight + SPACE) {
state = RELEASE;
refreshHeaderViewByState();
}
break;
case RELEASE:
topPadding(topPadding);
if (space > 0 && space < headerContentHeight + SPACE) {
state = PULL;
refreshHeaderViewByState();
} else if (space <= 0) {
state = NONE;
refreshHeaderViewByState();
}
break;
}


}


// 调整header的大小。其实调整的只是距离顶部的高度。
private void topPadding(int topPadding) {
header.setPadding(header.getPaddingLeft(), topPadding,
header.getPaddingRight(), header.getPaddingBottom());
header.invalidate();
}


/**
* 这个方法是根据结果的大小来决定footer显示的。
* <p>
* 这里假定每次请求的条数为10。如果请求到了10条。则认为还有数据。如过结果不足10条,则认为数据已经全部加载,这时footer显示已经全部加载
* </p>

* @param resultSize
*/
public void setResultSize(int resultSize) {
if (resultSize == 0) {
isLoadFull = true;//加载全部
loadFull.setVisibility(View.GONE);
loading.setVisibility(View.GONE);
more.setVisibility(View.GONE);
noData.setVisibility(View.VISIBLE);
} else if (resultSize > 0 && resultSize < pageSize) {
isLoadFull = true;//加载全部
loadFull.setVisibility(View.VISIBLE);
loading.setVisibility(View.GONE);
more.setVisibility(View.GONE);
noData.setVisibility(View.GONE);
} else if (resultSize == pageSize) {
isLoadFull = false;//没有加载全部
loadFull.setVisibility(View.GONE);
loading.setVisibility(View.VISIBLE);
more.setVisibility(View.VISIBLE);
noData.setVisibility(View.GONE);
}


}


// 根据当前状态,调整header
private void refreshHeaderViewByState() {
switch (state) {
case NONE:
topPadding(-headerContentHeight);
tip.setText(R.string.pull_to_refresh);//下拉可以刷新
refreshing.setVisibility(View.GONE);
arrow.clearAnimation();
arrow.setImageResource(R.drawable.pull_to_refresh_arrow);//向下的箭头
break;
case PULL:
arrow.setVisibility(View.VISIBLE);
tip.setVisibility(View.VISIBLE);
lastUpdate.setVisibility(View.VISIBLE);
refreshing.setVisibility(View.GONE);//进度条
tip.setText(R.string.pull_to_refresh);
arrow.clearAnimation();
arrow.setAnimation(reverseAnimation);
break;
case RELEASE://release。释放
arrow.setVisibility(View.VISIBLE);
tip.setVisibility(View.VISIBLE);
lastUpdate.setVisibility(View.VISIBLE);
refreshing.setVisibility(View.GONE);
tip.setText(R.string.pull_to_refresh);
tip.setText(R.string.release_to_refresh);//松开可以刷新
arrow.clearAnimation();
arrow.setAnimation(animation);
break;
case REFRESHING:
topPadding(headerContentInitialHeight);
refreshing.setVisibility(View.VISIBLE);
arrow.clearAnimation();
arrow.setVisibility(View.GONE);
tip.setVisibility(View.GONE);
lastUpdate.setVisibility(View.GONE);
break;
}
}


// 用来计算header大小的。比较隐晦。因为header的初始高度就是0,貌似可以不用。
private void measureView(View child) {
ViewGroup.LayoutParams p = child.getLayoutParams();
if (p == null) {
p = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT);
}
int childWidthSpec = ViewGroup.getChildMeasureSpec(0, 0 + 0, p.width);
int lpHeight = p.height;
int childHeightSpec;
if (lpHeight > 0) {
childHeightSpec = MeasureSpec.makeMeasureSpec(lpHeight,
MeasureSpec.EXACTLY);
} else {
childHeightSpec = MeasureSpec.makeMeasureSpec(0,
MeasureSpec.UNSPECIFIED);
}
child.measure(childWidthSpec, childHeightSpec);
}


/*
* 定义下拉刷新接口
*/
public interface OnRefreshListener {
public void onRefresh();
}


/*
* 定义加载更多接口
*/
public interface OnLoadListener {
public void onLoad();
}


}

/****************************Fragment展示数据****************************************************/

public class Fragment1 extends Fragment implements OnRefreshListener,OnLoadListener{
private MyListView listView;
int a=1;
String url="http://www.oschina.net/action/api/news_list?catalog=1&&pageIndex="+a+"&&pageSize=20";
List<News> news;
MyBaseAdapter adapter;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {

View view=inflater.inflate(R.layout.fragment, null);

listView = (MyListView) view.findViewById(R.id.listView);
//实现上拉加载
listView.setOnRefreshListener(this);
listView.setOnLoadListener(this);
listView.isLoadEnable();

//HttpUtils请求数据
HttpUtils utils=new HttpUtils();
utils.send(HttpMethod.GET, url, null,new RequestCallBack<String>() {


@Override
public void onFailure(HttpException arg0, String arg1) {

}


public void onSuccess(ResponseInfo<String> arg0) {
String result = arg0.result;
XStream stream=new XStream();
stream.processAnnotations(XMLBean1.class);
XMLBean1 bean1=(XMLBean1) stream.fromXML(result);
news = bean1.newslist.news;
adapter = new MyBaseAdapter(getActivity(), news);
listView.setAdapter(adapter);
}
});

return view;
}
/**    下拉刷新          */
public void onRefresh() {
HttpUtils utils=new HttpUtils();
utils.send(HttpMethod.GET, url, null,new RequestCallBack<String>() {


@Override
public void onFailure(HttpException arg0, String arg1) {

}


public void onSuccess(ResponseInfo<String> arg0) {
String result = arg0.result;
XStream stream=new XStream();
stream.processAnnotations(XMLBean1.class);
XMLBean1 bean1=(XMLBean1) stream.fromXML(result);
news = bean1.newslist.news;
adapter.notifyDataSetChanged();
}
});
listView.onRefreshComplete();
}
/**    上拉加载          */
public void onLoad() {
a++;
HttpUtils utils=new HttpUtils();
utils.send(HttpMethod.GET, url, null,new RequestCallBack<String>() {


@Override
public void onFailure(HttpException arg0, String arg1) {

}


public void onSuccess(ResponseInfo<String> arg0) {
String result = arg0.result;
XStream stream=new XStream();
stream.processAnnotations(XMLBean1.class);
XMLBean1 bean1=(XMLBean1) stream.fromXML(result);
List<News> news2 = bean1.newslist.news;
news.addAll(news2);//追加数据
adapter.notifyDataSetChanged();
listView.onLoadComplete();
}
});
}
}

/****************************工具类,转换时间****************************************************/

public class DateTools {
/*
* 将时间戳转为字符串 ,格式:yyyy.MM.dd  星期几
*/
@SuppressWarnings("null")
public static String getSection(String cc_time) {
String re_StrTime = null;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd  EEEE");
//对于创建SimpleDateFormat传入的参数:EEEE代表星期,如“星期四”;MMMM代表中文月份,如“十一月”;MM代表月份,如“11”;
//yyyy代表年份,如“2010”;dd代表天,如“25”
// 例如:cc_time=1291778220
if(cc_time!=null || !cc_time.equals("")){
long lcc_time = Long.valueOf(cc_time);
re_StrTime = sdf.format(new Date(lcc_time * 1000L));
}

return re_StrTime;
}
/*
* 将系统时间转为字符串 ,格式:yyyy-MM-dd  HH:mm:ss
*/

public static String getCurrentTime(String format) {
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat(format, Locale.getDefault());
String currentTime = sdf.format(date);
return currentTime;
}


public static String getCurrentTime() {
return getCurrentTime("yyyy-MM-dd  HH:mm:ss");
}
}

/*
* listView的footer
*/

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="horizontal" >


    <TextView
        android:id="@+id/loadFull"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="5dp"
        android:text="@string/load_full"
        android:visibility="gone" />


    <TextView
        android:id="@+id/noData"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="5dp"
        android:text="@string/no_data"
        android:visibility="gone" />


    <TextView
        android:id="@+id/more"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:padding="5dp"
        android:text="@string/more" />


    <ProgressBar
        android:id="@+id/loading"
        style="@style/customProgressBar" />


</LinearLayout>

/*
* listView的header的xml
*/

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical" >


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="10dp" >


        <LinearLayout
            android:id="@+id/layout"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:orientation="vertical" >


            <ProgressBar
                android:id="@+id/refreshing"
                style="@style/customProgressBar" />


            <TextView
                android:id="@+id/tip"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center" />


            <TextView
                android:id="@+id/lastUpdate"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:textSize="12sp" />
        </LinearLayout>


        <ImageView
            android:id="@+id/arrow"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginRight="20dp"
            android:layout_toLeftOf="@id/layout"
            android:contentDescription="@string/d"
            android:src="@drawable/pull_to_refresh_arrow" />
    </RelativeLayout>


    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/h_line"
        android:contentDescription="@string/d" />


</LinearLayout>


 <!--String 自定义组件 -->
    <string name="pull_to_refresh">下拉可以刷新</string>
    <string name="release_to_refresh">松开可以刷新</string>
    <string name="lastUpdateTime">最近更新:%s</string>
    <string name="load_full">已加载全部</string>
    <string name="no_data">暂无数据</string>
    <string name="more">加载中</string>
     <!-- 消除警告,可忽略 -->
    <string name="d">图片描述</string>


 <!-- Style -->

<style name="customProgressBar" parent="@android:style/Widget.ProgressBar.Small">
        <item name="android:indeterminateDrawable">@drawable/custom_progress_bar</item>
        <item name="android:layout_width">21dip</item>
        <item name="android:layout_height">21dip</item>
        <item name="android:layout_gravity">center</item>
    </style>


 <!--custom_progress_bar.xml -->

<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false" >


    <item
        android:drawable="@drawable/loading_0"
        android:duration="100"/>
    <item
        android:drawable="@drawable/loading_1"
        android:duration="100"/>
    <item
        android:drawable="@drawable/loading_2"
        android:duration="100"/>
    <item
        android:drawable="@drawable/loading_3"
        android:duration="100"/>
    <item
        android:drawable="@drawable/loading_4"
        android:duration="100"/>
    <item
        android:drawable="@drawable/loading_5"
        android:duration="100"/>
    <item
        android:drawable="@drawable/loading_6"
        android:duration="100"/>
    <item
        android:drawable="@drawable/loading_7"
        android:duration="100"/>


</animation-list>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章