2

我想将图像作为位图从一个活动传递到另一个活动。我想知道是否可以这样做。

发送活动

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");

但我得到了!Binder 交易失败!!!错误

4

2 回答 2

8

您可以使用其中包含静态位图对象的全局类,如下所示:

public class Global { static Bitmap img; }

在按意图说明活动之前,请将您的位图分配给此 Global 类属性:

Global.img = your_bitmap_img;

开始活动后,您可以通过以下方式取回位图:

bitmap_in_new_activity = Global.img;

我知道全局变量对于调试来说太危险了,但是这种技术可以帮助我们将大数据从一个活动传输到另一个活动。活页夹事务缓冲区的固定大小有限,目前为 1Mb,无论您的设备功能或应用程序如何。

于 2014-12-06T15:39:06.013 回答
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);   

接收活动

不要忘记将您的图像放在drawable中。

于 2014-06-18T12:29:57.787 回答