我在First活动中得到了一个imageView,我想将字符串传递给第二个活动,以便显示相同的图像。
我在第一个活动中得到了这段代码:
ImageView imageView = (ImageView)findViewById(R.id.imageView1);
String sharePre = imageView.getDrawable().toString();
结果,我得到String sharePre = android.graphics.drawable.BitmapDrawable@42a74470
问题:如何在第二个活动中将String转换回Drawable,换句话说,我想使用
ImageView imageView2 = (ImageView)findViewById(R.id.imageView2);
imageView2.setImageDrawable(sharePre.toDrawrable);