滚动时加载数据

时间:2012-03-13 07:27:20

标签: android scrollbar

我正在开发Android应用程序。现在我必须创建报纸的应用程序。所以在主页上我必须用图像和文本显示头条新闻。现在我的问题是,应该有这么多顶级故事,所以我使用水平滚动条来查看其他故事。现在我的想法是在用户向左或向右滚动时加载图像和文本。是否可以在创建活动时加载或必须加载所有数据。任何帮助或建议表示赞赏。

1 个答案:

答案 0 :(得分:0)

如果您要问的是Lazy-Loading,那么您需要使用AsyncTask,因为这是实现它的最简单方法。

class Download extends AsyncTask<Integer,Integer,Integer>{
     protected Integer doInBackground(Integer... wat) {
          //Your downloading stuff
     }
     protected Integer onPostExecute(Integer result){
           //Create listview in UI Thread
     }
}

创建水平ListView阅读here