如何使用Volley预加载图像

时间:2014-09-22 15:50:27

标签: android image listview android-volley image-loading

我是android新手。我正在使用android volley库来加载图像和发布请求。我是第一次在列表视图中加载五个项目。在滚动第五个项目之后,现在我在列表视图中加载下五个项目。我的问题是图像只有在其视图出现在显示屏上时才会加载。一旦我将项目添加到列表视图,如何预加载图像,当我滚动列表视图时,我需要查看加载的图像。感谢所有人。

if ((loadedItems == totalItemCount) && totalItemCount != 0) {

    if (max < productscount) {
    min = max;
    max = max + 5;

    if (min == 0) {             
        lastpost_id = "";
    }               

    if (!cd.isConnectingToInternet()) {
        alert.showAlertDialog(
        ActivityPreloved.this,          
        "Internet Connection Error",
        "Please connect to working Internet connection",
        false);
        return;
    } else {
        activityScreenVolleyExecute();
        app_session.setScrollVal("1");                      
    }                   
}

0 个答案:

没有答案