【发布时间】:2016-07-27 03:13:57
【问题描述】:
我在 Xamarin Android 项目中带有图像的活动中有一个 ImageView。我需要通过单击按钮将该图像传递给另一个活动。
Intent intent = new Intent(this, typeof(SecondActivity));
intent.PutExtra("Key", "Value");
我知道上面传递字符串等的方法。但是如何传递图像?
【问题讨论】:
标签: c# android mobile xamarin apk