我想将多个数据从一个活动传递到另一个活动,例如我正在手工打磨每个不同颜色的指甲,现在我想把这一切都转移到另一个活动,以便其他工作怎么做..
Intent intent = new Intent(Nail_Polish.this, Blower.class);
finger1.buildDrawingCache();
Bitmap image = finger1.getDrawingCache();
Bundle extras = new Bundle();
extras.putParcelable("imagebitmap", image);
intent.putExtras(extras);
startActivity(intent);
我试过这个,但我不太了解。 任何想法如何可能
答案 0 :(得分:0)
public class Blower extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Bitmap b = savedInstanceState.getParcelable("imagebitmap");
Bundle extras = getIntent().getExtras();
Bitmap bmp = (Bitmap) extras.getParcelable("imagebitmap");
}
}