0

我正在使用 LowProfileImageLoader 异步加载图像而不会阻止 UI。

您可以从链接获取它:LowProfileImageLoader

如果 List 的 DataSource 有许多不同的链接,则一切正常。

但是现在,我想使用所有相同 URL 的 DataSource 进行测试,所以在文件 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
        }

它将创建具有相同 URL 的 200 个项目的列表数据源进行测试。

在 LowProfileImageLoader.cs 中,我记录了应用程序的 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 ,尽管图像大小(来自 URL)只有 120kb。

为什么 OutofMemoryException 会抛出?为什么垃圾回收不调用而我的内存稳定增加?

任何帮助都是非常恰当的。预先感谢。

4

1 回答 1

0

图像内存增加 ~ 3mb 虽然图像大小(来自 URL)只有 120kb

显示图像时,必须从 JPEG 解码,因此占用更多内存是正常的。尝试使用 Paint 将图像转换为 BMP 以查看它。

为什么 OutofMemoryException 会抛出?

您可能超过了 90 MB 的限制

为什么垃圾回收不调用而我的内存稳定增加?

查看这篇诺基亚文章:考虑用使用数据虚拟化的 ListBox 替换图像替换长列表

于 2012-11-05T20:17:06.613 回答