您可以转换为 bytearray 并传递相同的内容。在下一个活动中解码并显示相同的内容。
使用意图传递图像
Intent i = new Intent(this, NextActivity.class);
Bitmap b; // your bitmap
ByteArrayOutputStream bs = new ByteArrayOutputStream();
b.compress(Bitmap.CompressFormat.PNG, 50, bs);
i.putExtra("byteArray", bs.toByteArray());
startActivity(i);
接受
if(getIntent().hasExtra("byteArray")) {
ImageView previewThumbnail = new ImageView(this);
Bitmap b = BitmapFactory.decodeByteArray(
getIntent().getByteArrayExtra("byteArray"),0,getIntent().getByteArrayExtra("byteArray").length);
previewThumbnail.setImageBitmap(b);
}
如果您传递字符串 url
你如何将字符串从一个活动传递到另一个活动?
编辑:
传递uri
Uri uri = Uri.parse("android.resource://com.example.passurl/drawable/ic_launcher");
// com.example.passurl is the package name
// ic_launcher is the image name
Intent i = new Intent(MainActivity.this,NewActivity.class);
i.setData(uri);
startActivity(i);
接受
ImageView iv= (ImageView) findViewById(R.id.imageView1); // initialize image view
if(getIntent().getData()!=null)
{
Uri path = getIntent().getData();
iv.setImageURI(path); //set the image
}