2

Gridviewにサムネイル画像を入力しようとしていますが、非同期タスク内で画像をデコードする際に問題が発生します。アプリを起動すると、画像が1つずつ読み込まれ、画像が正しく表示されません(スクロールすると、一番上の画像が表示され、後で元の画像が読み込まれます)。これが私のコードです:

public class ImageAdapter extends BaseAdapter {
    private Context mContext;
    private List<String> mList;
    private int mheight;
    private int mwidth;
    private InputStream is;

    public ImageAdapter(Context context, List<String> list, int height, int width) {
        mContext = context;
        mList = list;
        mheight = height;
        mwidth = width;
    }


    @Override
    public int getCount() {
        return mList.size();
    }

    @Override
    public Object getItem(int position) {
        return mList.get(position).toString();
    }

    @Override
    public long getItemId(int position) {
        return 0;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        ImageView imageView;
        if (convertView == null) {
            imageView = new ImageView(mContext);
        } else {
            imageView = (ImageView) convertView;
        }


        InputStream is;
        try {
            is = mContext.getAssets().open(mList.get(position));
            Loadimage task = new Loadimage(imageView , mheight , mwidth);
            task.execute(is);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        return imageView ;

    }

    public class Loadimage extends AsyncTask<InputStream, Void, Bitmap>{
        private final WeakReference<ImageView> imageViewReference;


        private InputStream is = null;
        private int width;


        public Loadimage(ImageView imageView, int mheight, int mwidth) {
             imageViewReference = new WeakReference<ImageView>(imageView);
             this.width=mwidth;

            // TODO Auto-generated constructor stub
        }

        @Override
        protected Bitmap doInBackground(InputStream... params) {
            is = params[0];

            if (is !=null) {

                Bitmap bitmap  = BitmapFactory.decodeStream(is);
                Bitmap nBitmap =Bitmap.createScaledBitmap(bitmap,width/3 , width/3, false);
                return nBitmap;     
            }
            return null; 
          }
         @Override
         protected void onPostExecute(Bitmap bitmap) {
            if (imageViewReference != null && bitmap != null) {
                final ImageView imageView = imageViewReference.get();
                if (imageView != null) {
                    imageView.setImageBitmap(bitmap);
                    imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
                }


        }
    }
}
4

1 に答える 1

1

ユニバーサルイメージローダーを強くお勧めします。必要なものが揃っています。サムネイルを読み込むことができるグリッドビューです。また、メモリとディスクのキャッシュ機能に加えて、ログとスレッドプールサイズの機能も備えています。試してみる; それは私にとって完璧に機能し、あなたのニーズに合うはずです。

于 2013-03-25T05:51:45.433 に答える