Some widgets or shortcut can release memory to get more available.
某些小部件或快捷方式可以释放内存以获得更多可用内容。
How they do that?
他们是怎么做到的?
2 个解决方案
#1
4
if you have android jelly bean or above from Gingerbird , you can free memory by run task manager and close those app which are running in background.
如果您有来自Gingerbird的android jelly bean或更高版本,您可以通过运行任务管理器释放内存并关闭那些在后台运行的应用程序。
#2
0
Suppose you're a web browser. You have a cache of images and so on in RAM. You release memory by clearing your cache and telling java to collect garbage:
假设您是一个Web浏览器。 RAM中有一个图像缓存等等。通过清除缓存并告诉java收集垃圾来释放内存:
fooCache.clear();
System.gc();
#1
4
if you have android jelly bean or above from Gingerbird , you can free memory by run task manager and close those app which are running in background.
如果您有来自Gingerbird的android jelly bean或更高版本,您可以通过运行任务管理器释放内存并关闭那些在后台运行的应用程序。
#2
0
Suppose you're a web browser. You have a cache of images and so on in RAM. You release memory by clearing your cache and telling java to collect garbage:
假设您是一个Web浏览器。 RAM中有一个图像缓存等等。通过清除缓存并告诉java收集垃圾来释放内存:
fooCache.clear();
System.gc();