如何在android中将String转换为drawView for imageView

时间:2014-04-13 16:34:16

标签: android image imageview drawable

我在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);

0 个答案:

没有答案