// 激活加载更多
xListView.setPullLoadEnable(true);
// 激活下拉刷新
xListView.setPullRefreshEnable(true);
xListView.setXListViewListener(new IXListViewListener() {
// 下拉刷新
@Override
public void onRefresh() {
//清除
list.clear();
getdater();
//刷新
mylistvew.notifyDataSetChanged();
// 停止加载更多
xListView.stopLoadMore();
// 停止刷新
xListView.stopRefresh();
// 设置刷新时间
xListView.setRefreshTime(time());
}
// 上啦加载
@Override
public void onLoadMore() {
getdater();
//刷新
mylistvew.notifyDataSetChanged();
//停止加载更多
xListView.stopLoadMore();
//停止刷新
xListView.stopRefresh();
}
});
private String time() {
// 获取当前时间
long millis = System.currentTimeMillis();
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(
“yyyy-MM-dd hh:mm:ss”);
String string = simpleDateFormat.format(millis);
return string;
}