2

画像の URL がいくつかあります。それらをダウンロードして、Android の imageView に設定します。次のコードを使用しています。タスクを実行しているだけです。しかし、私にはそのプロセスが遅すぎるように思えます。デバイスのインターネット接続速度に依存することはわかっていますが、画像の読み込みを高速化するより速い方法はありますか?

import java.io.InputStream;
import java.lang.ref.WeakReference;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.client.methods.HttpGet;

import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.http.AndroidHttpClient;
import android.os.AsyncTask;
import android.util.Log;
import android.widget.ImageView;

class ImageDownloaderTask extends AsyncTask<String, Void, Bitmap> {
        private final WeakReference<ImageView> imageViewReference;

        public ImageDownloaderTask(ImageView imageView) {
                imageViewReference = new WeakReference<ImageView>(imageView);
        }

        @Override
        // Actual download method, run in the task thread
        protected Bitmap doInBackground(String... params) {
                // params comes from the execute() call: params[0] is the url.
                return downloadBitmap(params[0]);
        }

        @Override
        // Once the image is downloaded, associates it to the imageView
        protected void onPostExecute(Bitmap bitmap) {
                if (isCancelled()) {
                        bitmap = null;
                }

                if (imageViewReference != null) {
                        ImageView imageView = imageViewReference.get();
                        if (imageView != null) {

                                if (bitmap != null) {
                                        imageView.setImageBitmap(bitmap);
                                } else {
                                        imageView.setImageDrawable(imageView.getContext().getResources()
                                                        .getDrawable(R.drawable.imgloading));
                                }
                        }

                }
        }

        static Bitmap downloadBitmap(String url) {
                final AndroidHttpClient client = AndroidHttpClient.newInstance("Android");
                final HttpGet getRequest = new HttpGet(url);
                try {
                        HttpResponse response = client.execute(getRequest);
                        final int statusCode = response.getStatusLine().getStatusCode();
                        if (statusCode != HttpStatus.SC_OK) {
                                Log.w("ImageDownloader", "Error " + statusCode
                                                + " while retrieving bitmap from " + url);
                                return null;
                        }

                        final HttpEntity entity = response.getEntity();
                        if (entity != null) {
                                InputStream inputStream = null;
                                try {
                                        inputStream = entity.getContent();
                                        final Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
                                        return bitmap;
                                } finally {
                                        if (inputStream != null) {
                                                inputStream.close();
                                        }
                                        entity.consumeContent();
                                }
                        }
                } catch (Exception e) {
                        // Could provide a more explicit error message for IOException or
                        // IllegalStateException
                        getRequest.abort();
                        Log.w("ImageDownloader", "Error while retrieving bitmap from " + url);
                } finally {
                        if (client != null) {
                                client.close();
                        }
                }
                return null;
        }

}

同じタスクをより高速に実行するヒントまたはソースコードを待っています。ありがとう

4

2 に答える 2

2

キャッシュを使用できます。Web から画像を読み込んで ImageView に表示するために、Square の Picasso を使用しています。Picasso にはいくつかのキャッシング実装があり、非常に簡単に使用できます。

https://github.com/square/picasso

于 2013-11-13T14:32:41.327 に答える
1

多分それはこれを行うための最良かつ最もクリーンな方法ではありませんが、私の意見と私の経験から、それは断食です.

私は WebView を使用して画像をロードするのが好きで、画像がたくさんある場合にうまく機能し、それは簡単です:

image.setBackgroundColor(0);
image.loadDataWithBaseURL("", "<img src='YOUR URL HERE'/>", 
                          "text/html", "UTF-8", "");

画像は WebView です:

WebView image = (WebView) findViewById(R.id.imagewebview);
于 2014-02-12T14:12:34.573 に答える