我正在尝试使用“http://github.com/commonsguy/cwac-endless”为我的列表视图实现分页。
我正确地获得了第一页结果,当我向下滚动到第一页的底部时,我看到了旋转的轮子,但我没有得到任何结果。
我从LogCat注意到,getPendingView(),cacheInBackground(),appendCachedData()和MyCustomAdapter的getView()被无限调用。
任何人都可以帮助。
谢谢, nehatha。
这是我的代码段:
Activity{
onCreate() {
myList = new ArrayList<Item>();
setListAdapter(new DemoAdapter(myList));
nextLink = "service_url"; //for first page results (say 1-25)
}
final Handler handler = new Handler() {
public void handleMessage(final Message msg) {
//
updateList(jsonResponse);
}
};
updateList(String jsonString) {
//parse json
//add to `myList`
//update `nextLink`, if there is next page available
}
class DemoAdapter extends EndlessAdapter {
private RotateAnimation rotate=null;
DemoAdapter(List<Item> list) {
super(new MyCustomAdapter(LatestUpdatesList.this, R.layout.latest_update_item, list));
//rotate code
}
@Override
protected boolean cacheInBackground() {
if(nextLink != null && nextLink.length() > 0){
HttpHandler httpHandler = new HttpHandler(nextLink, "GET", handler);
Thread latestUpdatesThread = new Thread(httpHandler);
latestUpdatesThread.start();
return true;
}
return false;
}
@Override
protected void appendCachedData() {
MyCustomAdapter adapter = (MyCustomAdapter)getWrappedAdapter();
adapter.setList(myList);
}
} //DemoAdapter
} //Activitiy
答案 0 :(得分:0)
我通过不在新线程中调用我的Web服务(在cacheInBackground()方法内)修复了这个问题。相反,我直接直接调用我的HttpHandler的get()方法。但我不确定这是最好的解决办法。
谢谢, nehatha