遷移元のクリック時処理) // 遷移先に渡す画像定数名を付加情報をIntentに設定 Intent intent = new Intent(遷移元.this, 遷移先.class); intent.putExtra("picture", R.drawable.icon); ------------------------------ 遷移先の画面内コード) int pictureID_Number; //送信データを取得 Bundle extras = getIntent().getExtras(); if (extras != null) { pictureID_Number = extras.getInt("picture"); } android.content.res.Resources r = getResources(); Bitmap bmp1 = BitmapFactory.decodeResource(r, pictureID_Number); ImageView image1 = (ImageView) this.findViewById(R.id.ImageView01);//xmlのidを指定 image1.setImageBitmap(bmp1);