我希望在点击第一张图像视图
时,将ImageView中的图像转换为第二个活动中的另一个imageView这是我的第一个活动
ImageView imageView = (ImageView) findViewById(R.id.fort_image);
imageView.setImageResource(R.drawable.killa_ahmednagar_bhuikot_fort);
imageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
Intent myIntent = new Intent(getApplicationContext(), FullscreenImageActivity.class);
startActivity(myIntent);
}
});
}
我希望那张照片成为第二次全屏活动。
答案 0 :(得分:1)
在活动1 :
中 ImageView imageView = (ImageView) findViewById(R.id.fort_image);
imageView.setImageResource(R.drawable.killa_ahmednagar_bhuikot_fort);
imageView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
Intent myIntent = new Intent(getApplicationContext(), FullscreenImageActivity.class);
myIntent.putExtra("Drawable", R.drawable.killa_ahmednagar_bhuikot_fort);
startActivity(myIntent);
}
});
在活动2 :
中 Intent intent = getIntent();
int drawable = intent.getIntExtra("Drawable", 0);
imageView.setImageResource(drawable);