English 中文(简体)
Bitmaps是如何在安卓的记忆中存储的?
原标题:How Are Bitmaps Stored in Memory in Android?

还没找到这个

http:// developmenter.android.com/ reference/android/graphics/Bitmap.html" rel=“nofollow” >Bitmaps 如何存储在 Android的记忆中? 更具体地说, 我要找的是, 它是否通过像素存储信息像素, 或者它是否使用任何算法来减少存储像素的数量, 比如存储一个像素, 并列重复多少次。 我想了解这一点, 因为我们在匹配游戏中想要的所有图像时遇到了麻烦。 如果它确实使用某种算法, 那么我们就可以对原始图像做一些事情来减少记忆的消耗, 对不对?

最佳回答

Bitmaps 被压缩存储, 但你几乎可以在某个点不组装像素的情况下显示一个 。 您的最佳赌注可能是保存有限的 CPU 堆, 并将您的图像作为压缩 OpenGL ES 纹理输入 GPU 。

Additional: Have a look at Displaying Bitmaps Efficiently. Also recycle your bitmaps if it helps.

问题回答

虽然实施 may 选择使用 < strong > RLE 来存储记忆中的位图,但我非常怀疑会这样做,因为与这些位图一起操作效率不高。

无人机3.0和3.0以上, 你可以要求更大的堆肥。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签