1

我想在图像视图中放置一个微调器进度条,直到图像从互联网加载。它适用于静态图像。

有一种方法可以将进度条保持在与 imageview 的相对布局中。在我的情况下,我该如何实施?

这是我的适配器:

public View getView(int position, View view, ViewGroup parent) {        
    view = new ImageView(parent.getContext());  
    view.setLayoutParams(new GridView.LayoutParams(260, 220));      
    imageLoader.DisplayImage(result.get(position).get("LogoUrl"), (ImageView) view);
    return view;
}

设置图像的方法:

public void DisplayImage(String url, ImageView imageView)
{
    imageViews.put(imageView, url);
    Bitmap bitmap=memoryCache.get(url);
    if(bitmap!=null)
        imageView.setImageBitmap(bitmap);
    else
    {
        queuePhoto(url, imageView);
        imageView.setImageResource(stub_id);                    
    }
}
4

2 回答 2

0

为此,您应该请求窗口功能以获取进度

requestFeature(FEATURE_INDETERMINATE_PROGRESS);

使用后

setProgressBarIndeterminateVisibility(true|false)

to show/hide the progress
于 2012-11-23T09:43:44.210 回答
0

我想你想在你的代码中使用 AsyncTask 。

http://developer.android.com/reference/android/os/AsyncTask.html
于 2012-11-23T09:19:52.280 回答