1

こんにちは、ここで1つのアプリを実行しています。ここでは、より多くの画像を使用しています。ここでは、arraylistで画像を使用しています。これらの配列リストを配列に変換してから、その文字列配列をimageviewに追加しますが、アクティビティが開始されると、ビットマップサイズが例外を超えます。私がこの問題に直面しているとき、しかし時々それはうまく機能しています。時々私だけがこの問題に直面しています...私は多くの方法を試しましたが結果はありませんでした。

 LetterGameActivity .class:

 public class LetterGameActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

           birdimg1 = (ImageView) findViewById(R.id.birdimg);
        option11 = (TextView)findViewById(R.id.opt1);
        option12 = (TextView)findViewById(R.id.opt2);
        option13 = (TextView)findViewById(R.id.opt3);

                        option11.setText(stringArraynew[0]);
            option12.setText(stringArraynew1[0]);
            option13.setText(stringArraynew2[0]);


             BitmapFactory.Options options = new BitmapFactory.Options();
            options.inJustDecodeBounds = true;
            BitmapFactory.decodeResource(getResources(), stringArraynew3[0], options);
            int imageHeight = options.outHeight;
            int imageWidth = options.outWidth;
            String imageType = options.outMimeType;

            birdimg1.setImageBitmap(
                    decodeSampledBitmapFromResource(getResources(), stringArraynew3[0], 100, 100));
}

   public static Bitmap decodeSampledBitmapFromResource(Resources res, int resId,
        int reqWidth, int reqHeight) {

    // First decode with inJustDecodeBounds=true to check dimensions
    final BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    BitmapFactory.decodeResource(res, resId, options);

    // Calculate inSampleSize
    options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);

    // Decode bitmap with inSampleSize set
    options.inJustDecodeBounds = false;
    return BitmapFactory.decodeResource(res, resId, options);
}

public static int calculateInSampleSize(
        BitmapFactory.Options options, int reqWidth, int reqHeight) {
// Raw height and width of image
final int height = options.outHeight;
final int width = options.outWidth;
int inSampleSize = 1;

if (height > reqHeight || width > reqWidth) {
    if (width > height) {
        inSampleSize = Math.round((float)height / (float)reqHeight);
    } else {
        inSampleSize = Math.round((float)width / (float)reqWidth);
    }
}
return inSampleSize;
  }
 protected void onPause() {
    super.onPause();
System.gc();
   }
protected void onDestroy()
{
    super.onDestroy();
       System.gc();
    }

    }
4

0 に答える 0