在我的应用程序中,我有一个列表视图,它在其适配器中使用 ImageLoader 来加载带有 lsit 视图项的图像。
在活动的 oncreate 中,我为列表视图项获取一些 URL,如下所示:
private void fetchImages() {
// TODO Auto-generated method stub
//fetching the list
mCustomProgressDialog = CustomProgressDialog.createDialog(Group_SharePictureMainActivity.this, "", "");
mCustomProgressDialog.show();
new Thread(){
@Override
public void run() {
APIVariables apiVariables = new APIVariables();
String getGroupImagesURL = apiVariables.getGroupImages(GroupsActivity.Group_ID);
groupImages = ParseValues.getGroupImages(getGroupImagesURL);
handlerFetchGroupImages.sendEmptyMessage(0);
}
}.start();
}
这里我的问题是 - 我想实现一种情况,在这种情况下,当 Internet 连接不可用时,应该出现已经生成的列表视图(当 Internet 可用时)。
当网络连接不可用时,这是否可以保持列表视图的先前状态?
谢谢