Stefan Wick 在他的博客中写道,我们可以使用类似的代码清除 WP7 中的图像缓存
<code>
BitmapImage bitmapImage = image.Source as BitmapImage;
bitmapImage.UriSource = null;
image.Source = null;
http://blogs.msdn.com/b/swick/archive/2012/04/05/10151249.aspx?CommentPosted=true#commentmessage
我已经测试了他的示例——项目(ImageTips.zip)——我可以说上面的代码不起作用——它不会释放缓存图像的内存,也不会删除应用程序的缓存图像。
当您将 UriSource 设置为 null 时——您只会释放页面 Caching.xaml 上的内存,但如果您将导航回 MainPage.xaml --- 您将看到内存没有释放 --- 内存增加了!!!
看到我们可以使用 Stefan 的项目 --- ImageTips.zip in his blog...
重现我的观察 --- 您可以: 1. 将代码添加到 MainPage.xaml 以查看当前内存值,例如在 Caching.xaml 页面上:
<tab>
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = TimeSpan.FromMilliseconds(500);
timer.Start();
timer.Tick += delegate
{
GC.Collect();
tbMemory.Text = string.Format("Memory: {0} bytes", DeviceExtendedProperties.GetValue("ApplicationCurrentMemoryUsage"));
};
</code>
- 运行您的应用程序。当我们第一次导航到 MainPage.xaml --- 内存值接近 9676448 字节
- 点击导航到 Caching.xaml(图像缓存)---内存值接近 9011200 字节
- 单击按钮 Show 以显示图像 -- 内存值接近 12996608 字节
- 单击避免图像缓存(清除缓存的图像),然后按下按钮清除 --- 10090144 字节 .... 那么,413696 字节在哪里消失了???(10090144 - 9676448 = 413696 字节)
单击按钮返回以导航回 MainPage.xaml --- 11828248 字节...但是导航到 Caching.xaml 之前的先前值是 9676448 字节...那么,哪里消失了 2151800 字节??
如果您将导航 20 次到页面 Caching.xaml(单击显示图像并使用缓存清除图像)并且当导航回 MainPage.xaml --- 使用的内存将增加到 3.3 mb...等等
我在我的应用程序中遇到了这个问题,不知道如何解决。
在 Windows phone 7 中清除图像缓存的其他变体有哪些?或者为什么通过将 UriSource 设置为 null 来清除图像缓存 --- 导航回上一页时不起作用(不释放内存)?
谢谢。