Ich habe eine Bitmap-Variable mit dem Namen bmpActivity1 und möchte die Bitmap an Activity2 senden Das Folgende ist der Code, den ich benutze, um ihn mit der Absicht zu übergeben. Intent in1 = new Intent(this, Activity2.class); in1.putExtra("image",bmp); startActivity(in1); Und in Aktivität...