当我尝试下载图像(可能是大图像)时,我遇到了 OutOfMemoryException。我正在使用 Xamarin.Android 和 PCL 进行跨平台操作。
我想做一个图像幻灯片。我的布局上叠加了有限数量的图像视图。当我刷出所有图像时,我会在这些图像视图中重新加载新图像。我做了一个简单的项目,只有机制中令人耳目一新的部分。
拜托,很好,我是 Android 和 Xamarin 的初学者,这里是代码:
MainActivity.cs:
[Activity(Label = "App1", MainLauncher = true, Icon = "@drawable/icon")]
public class MainActivity : Activity
{
private string[] urls = {
"http://momotaros.fr/wp-content/uploads/2014/01/One-Piece-5.png",
"http://www.infinite-rpg.com/wp-content/uploads/2014/09/Equipage.png",
"http://ekladata.com/ke33JLPQ2tTW1mTHCvPJBrKCPOE.jpg",
"http://ekladata.com/P2Q1mQuYTDbfEZnwb3f3IBsXoGM.png",
"http://ekladata.com/9QUE66iKU9uGUPVUdFmPF_ZIkK8.png"
};
protected override void OnCreate(Bundle bundle)
{
BlobCache.ApplicationName = "App1";
BlobCache.EnsureInitialized();
base.OnCreate(bundle);
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.Main);
// Get our button from the layout resource,
// and attach an event to it
Button button = FindViewById<Button>(Resource.Id.MyButton);
ImageView image = FindViewById<ImageView>(Resource.Id.imageView1);
ImageView image2 = FindViewById<ImageView>(Resource.Id.imageView2);
ImageView image3 = FindViewById<ImageView>(Resource.Id.imageView3);
ImageView image4 = FindViewById<ImageView>(Resource.Id.imageView4);
ImageView image5 = FindViewById<ImageView>(Resource.Id.imageView5);
button.Click += (sender, e) =>
{
image.SetImageURL(urls[0]);
image2.SetImageURL(urls[1]);
image3.SetImageURL(urls[2]);
image4.SetImageURL(urls[3]);
image5.SetImageURL(urls[4]);
};
}
}
public static class BitmapExtensions
{
public static async void SetImageURL(this ImageView imageView, string url)
{
IBitmap bmp = await App1.Shared.ImageDownloadService.DownloadImage(url, imageView.Width, imageView.Height);
if (bmp != null)
{
imageView.SetImageDrawable(bmp.ToNative());
}
}
}
ImageDownloadService.cs(在 PCL 中):
public class ImageDownloadService
{
public static async Task<Splat.IBitmap> DownloadImage(string url, float desiredWidth, float desiredHeight)
{
return await BlobCache.LocalMachine.LoadImageFromUrl(url,false, desiredHeight:desiredHeight,desiredWidth: desiredWidth);
}
}
当第一次单击该按钮时,它会下载图像(即使我发现 DDMS 中的内存使用率有点高)。
但是对于下一次点击,监视内存使用情况,它会像地狱一样增加。
我在想,当我在那个 imageView 中设置一个新图像时,内存中的以前的位图没有被处理,这是某处的强引用,但如果是这样,我无法找到它在哪里。
我将感谢您对这个问题的帮助或任何调试内存使用的技术,例如跟踪对象的创建位置和销毁位置。
感谢您花时间阅读这篇文章,希望您能帮助我。