我正在使用LowProfileImageLoader在没有阻止UI的情况下加载图像异步。
您可以从链接:LowProfileImageLoader
获取如果List的DataSource有许多不同的链接,那么一切都会好的。
但是现在,我想用DataSource测试所有相同的URL,所以在文件TwitterService.cs中,我编辑了:
private static void HandleGetFollowersResponse(IAsyncResult result)
{
var state = (GetFollowersState)result.AsyncState;
//#if DEBUG
try
{
//#endif
//using (var response = state.Request.EndGetResponse(result))
//{
// using (var stream = response.GetResponseStream())
// {
// var document = XDocument.Load(stream);
// Deployment.Current.Dispatcher.BeginInvoke(() =>
// {
// foreach (var user in document.Element("users_list").Element("users").Elements("user"))
// {
// state.Collection.Add(new TwitterUser(user.Element("screen_name").Value, new Uri(user.Element("profile_image_url").Value)));
// }
// });
// var nextCursor = document.Element("users_list").Element("next_cursor").Value;
// if ("0" == nextCursor)
// {
// // Load completed
// if (null != state.OnFollowersLoaded)
// {
// Deployment.Current.Dispatcher.BeginInvoke(() => state.OnFollowersLoaded());
// }
// }
// else
// {
// // Load the next set
// MakeGetFollowersRequest(state.ScreenName, nextCursor, state.Collection, state.OnFollowersLoaded);
// }
// }
//}
throw new WebException();
//#if DEBUG
}
catch (WebException)
{
//No network access; create some fake users for debugging purposes
for (var i = 0; i < 200; i++)
{
state.Collection.Add(new TwitterUser("Fake User " + i, new Uri("http://4.bp.blogspot.com/-O-6vxSiyvbk/UClib6CiR0I/AAAAAAAAQaI/5Fr1dI-kQBI/s1600/Flowers+beauty+desktop+wallpapers.+(1).jpg")));
}
if (null != state.OnFollowersLoaded)
{
Deployment.Current.Dispatcher.BeginInvoke(() => state.OnFollowersLoaded());
}
}
//#endif
}
它将创建List的dataSource,其中包含200个具有相同URL的项目。
在LowProfileImageLoader.cs中,我记录了app的currentUsedMemory:
private static void WorkerThreadProc(object unused)
{
// Process pending completions
if (0 < pendingCompletions.Count)
{
// Get the Dispatcher and process everything that needs to happen on the UI thread in one batch
Deployment.Current.Dispatcher.BeginInvoke(() =>
{
while (0 < pendingCompletions.Count)
{
Logger.printUsedMemory();
}
}
}
}
Logger.printUsedMemory()是辅助函数,可以帮助我记录我的应用程序当前使用的内存。 在代码中没有任何编辑。
但是在运行我的应用程序时,结果很奇怪: 我收到OutOfMemoryException。
输出窗口中的文本日志(使用的内存,以字节为单位),低于:
Used memory: 21966848
Used memory: 25051136
Used memory: 28442624
Used memory: 32673792
Used memory: 35512320
Used memory: 39079936
Used memory: 43364352
Used memory: 46571520
Used memory: 49815552
Used memory: 53497856
Used memory: 52514816
Used memory: 55902208
Used memory: 60452864
Used memory: 62001152
Used memory: 65503232 ~ 65.5mb
Used memory: 69005312 ~ 69mb
文本日志显示加载图像内存后增加〜3mb 虽然图片大小(来自网址)仅为120kb。
为什么抛出OutofMemoryException? 为什么垃圾收集没有打电话,我的记忆力增加了?
任何帮助都非常适合。 提前谢谢。
答案 0 :(得分:0)
图像内存增加〜3mb虽然图像大小(来自URL)仅为120kb
显示图像时,必须从JPEG解码,因此需要更多内存才是正常的。尝试使用Paint将图像转换为BMP以查看它。
为什么抛出OutofMemoryException?
您可能超过了90 MB的限制
为什么垃圾收集没有打电话,我的记忆力增加了?
查看此诺基亚文章:Consider replacing long lists with images with ListBox replacements that use Data Virtualization