Lal*_*ani 8

将Drawable转换为Bitmap并将其发送到Another Activity.

Bitmap bitmap = ((BitmapDrawable)d).getBitmap();
Run Code Online (Sandbox Code Playgroud)

发送,

intent.putExtra("Bitmap", bitmap);
Run Code Online (Sandbox Code Playgroud)

获取,

Bitmap bitmap = (Bitmap)this.getIntent().getParcelableExtra("Bitmap");
Run Code Online (Sandbox Code Playgroud)