我想将图像作为位图从一个活动传递到另一个活动。我想知道是否可以这样做。
发送活动
Intent intent = new Intent(getApplicationContext(), BitmapActivity.class);
Bundle b = new Bundle();
b.putParcelable("BITMAP", bitmap);
intent.putExtras(b);
startActivity(intent);
接收活动
Bundle bb = this.getIntent().getExtras();
b = bb.getParcelable("BITMAP");
但我得到 !!!失败的粘合剂交易!!! 错误
答案 0 :(得分:8)
您可以使用带有静态位图对象的全局类,如下所示:
public class Global {
static Bitmap img;
}
在按意图说明活动之前,将您的位图分配给此Global类属性:
Global.img = your_bitmap_img;
开始您的活动后,您可以通过以下方式取回您的位图:
bitmap_in_new_activity = Global.img;
我知道全局变量对于调试来说太危险了,但是这种技术可以帮助我们将大数据从一个活动转移到另一个活动。活页夹事务缓冲区具有有限的固定大小,目前1Mb,无论您的设备功能或应用程序如何。
答案 1 :(得分:0)
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.f1);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bmp.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] food = stream.toByteArray();
Intent intent = new Intent(MainActivity.this,NoBoringActionBarActivity.class);
intent.putExtras(bundle);
intent.putExtra("picture", food);
startActivity(intent);
发送活动
Bundle extras = getIntent().getExtras();
byte[] food = extras.getByteArray("picture");
Bitmap fo = BitmapFactory.decodeByteArray(food, 0, food.length);
mHeaderLogo = (ImageView) findViewById(R.id.header_logo);
//ImageView image = (ImageView) findViewById(R.id.header_logo);
mHeaderLogo.setImageBitmap(fo);
接收活动
不要忘记将图像放在可绘图中。