我的屏幕上有一个ImageView,我想要做的就是在其中显示图像。我得到的只是一个黑屏,显示照片应该在哪里
ImageView Display = FindViewById<ImageView>(Resource.Id.Photo);
File dir = new File(
Android.OS.Environment.GetExternalStoragePublicDirectory(
Android.OS.Environment.DirectoryPictures), "Photo's");
Display.SetImageBitmap(BitmapFactory.DecodeFile(dir.AbsolutePath + "/Photo.jpg"));
所有较小的jpeg图像均以
显示 Display.SetImageURI(data.Data);
其中data是OnActivityResult的意图 似乎问题不在于图像文件大小,而是以实际像素数为导向,但我非常不确定。