2

当我单击要显示图像和网格视图的图库项目时,我的 android 应用程序中有一个图库。当我在图库中只有三张图像并单击它正确显示时,我完成了。但是现在我在画廊中有七张图片,每个画廊项目都有四张图片来显示画廊。在这个我只使用 drwawable 图像数组。这次我得到了一个例外,因为 Java.lang.OutOfMemory 我使用下面的代码

             public ImageThemeAdapter(Context c, Integer[] mImageIds) {
 imagesId=mImageIds;
 bitmap=new Bitmap[imagesId.length];
 mContext = c;
 TypedArray ta=obtainStyledAttributes(R.styleable.Gallery1);
    imageBackground=ta.getResourceId(R.styleable.Gallery1_android_galleryItemBackground, 1);
    ta.recycle();
    for (int i = 0; i <imagesId.length; i++) {
       bitmap[i]=BitmapFactory.decodeResource(mContext.getResources(),imagesId[i]);
    }
}

public int getCount() {
    return bitmap.length;
}

public Object getItem(int position) {
    return bitmap[position];  
}

public long getItemId(int position) {
    return position;
}

public View getView(int position, View convertView, ViewGroup parent) {   

    ImageView i = new ImageView(mContext);

    i.setImageBitmap(bitmap[position]);
    i.setScaleType(ImageView.ScaleType.FIT_XY);
    i.setLayoutParams(new Gallery.LayoutParams(130, 120));
   // i.setLayoutParams(new Gallery.LayoutParams((ScreenWidth*80)/100, android.view.ViewGroup.LayoutParams.WRAP_CONTENT));
    i.setBackgroundResource(imageBackground);
    return i;   
}

和我的屏幕截图在此处输入图像描述

请提供任何建议提前谢谢。

4

0 回答 0