PullToRefresh
根据Maxwin的XListView改造而来,完善下拉刷新上拉加载更多的功能并实现自动刷新以及自动加载等功能, 并增加对ScrollView的支持。 原XListView参考链接:https://github.com/Maxwin-z/XListView-Android
Install / Use
/learn @MarkMjw/PullToRefreshREADME
PullToRefresh
注:本项目使用Android Studio开发
根据Maxwin的XListView改造而来:
1.完善下拉刷新上拉加载更多的功能
2.并增加对ScrollView的支持
3.增加自动刷新以及滚动到底部自动加载功能
原XListView参考链接:https://github.com/Maxwin-z/XListView-Android<br>
XListView使用示例
设置XListView相关属性<br>
mListView = (XListView) findViewById(R.id.list_view);
mListView.setPullRefreshEnable(true);
mListView.setPullLoadEnable(true);
mListView.setAutoLoadEnable(true);
mListView.setXListViewListener(this);
mListView.setRefreshTime(getTime());
mAdapter = new ArrayAdapter<String>(this, R.layout.vw_list_item, items);
mListView.setAdapter(mAdapter);
下拉刷新,下拉加载更多使用示例<br>
@Override
public void onRefresh() {
mHandler.postDelayed(new Runnable() {
@Override
public void run() {
mIndex = ++mRefreshIndex;
items.clear();
geneItems();
mAdapter = new ArrayAdapter<String>(XListViewActivity.this, R.layout.vw_list_item,
items);
mListView.setAdapter(mAdapter);
onLoad();
}
}, 2500);
}
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
if (hasFocus) {
mListView.autoRefresh();
}
}
@Override
public void onLoadMore() {
mHandler.postDelayed(new Runnable() {
@Override
public void run() {
geneItems();
mAdapter.notifyDataSetChanged();
onLoad();
}
}, 2500);
}
XScrollView使用示例
设置XScrollView相关属性<br>
mScrollView = (XScrollView) findViewById(R.id.scroll_view);
mScrollView.setPullRefreshEnable(true);
mScrollView.setPullLoadEnable(true);
mScrollView.setAutoLoadEnable(true);
mScrollView.setIXScrollViewListener(this);
mScrollView.setRefreshTime(getTime());
View content = LayoutInflater.from(this).inflate(R.layout.vw_scroll_view_content, null);
if (null != content) {
mListView = (ListView) content.findViewById(R.id.content_list);
mListView.setFocusable(false);
mListView.setFocusableInTouchMode(false);
mAdapter = new ArrayAdapter<String>(this, R.layout.vw_list_item, mItems);
mListView.setAdapter(mAdapter);
measureHeight();
}
mScrollView.setView(content);
下拉刷新,下拉加载更多使用示例<br>
@Override
public void onRefresh() {
mHandler.postDelayed(new Runnable() {
@Override
public void run() {
mIndex = ++mRefreshIndex;
mItems.clear();
geneItems();
mAdapter = new ArrayAdapter<String>(XScrollViewActivity.this,
R.layout.vw_list_item, mItems);
mListView.setAdapter(mAdapter);
measureHeight();
onLoad();
}
}, 2500);
}
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
if (hasFocus) {
mScrollView.autoRefresh();
}
}
@Override
public void onLoadMore() {
mHandler.postDelayed(new Runnable() {
@Override
public void run() {
geneItems();
mAdapter.notifyDataSetChanged();
measureHeight();
onLoad();
}
}, 2500);
}
##Screenshots




License
Copyright (C) 2014 MarkMjw
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Related Skills
node-connect
334.9kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.3kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
334.9kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.3kCommit, push, and open a PR
