为什么Android中应用程序及其资源在退出后仍保留在内存中?

发布于 2024-12-15 20:50:31 字数 639 浏览 4 评论 0原文

我有一个简单的 Hello World 应用程序,

public class TestLeaksOnFinish extends Activity  
{
    static int ctr = 0;
    protected void onCreate(Bundle savedInstanceState)
    {
    super.onCreate(savedInstanceState);
    TextView t = new TextView(this);
    t.setText("Hello World! "+ctr++);
    setContentView(t);          
    }   
}

当我多次运行此应用程序时,每次都按 BACK,我看到 ctr 每次都会增加,表明 BACK 后 Activity 并未完全终止。

按“BACK”后将 HPROF 文件转储到 DDMS 中也可以确认这一点。
该文件仍然包含我的 TestLeaksOnFinish 活动类。

有人可以解释为什么按“返回”后此活动仍然存在于堆转储中吗?

当我列出传入的参考文献时,我得到以下信息 DDMS 的屏幕截图

I have a simple Hello World application

public class TestLeaksOnFinish extends Activity  
{
    static int ctr = 0;
    protected void onCreate(Bundle savedInstanceState)
    {
    super.onCreate(savedInstanceState);
    TextView t = new TextView(this);
    t.setText("Hello World! "+ctr++);
    setContentView(t);          
    }   
}

When I run this multiple times, each time followed by pressing BACK, I see that ctr increases each time, indicating that the Activity is not killed completely after BACK.

This is also confirmed by dumping the HPROF file in DDMS after pressing BACK.
This file still contains my TestLeaksOnFinish activity class.

Can someone explain why this Activity is still present in the heap dump after pressing BACK?

When I list the incoming references, I get the following
screenshot from DDMS

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹短裙飘 2024-12-22 20:50:31

在 Android 中,活动不会被杀死,它们只会被移至后台。这就是 Android 的工作原理,您无法杀死应用程序,或者基本上没有退出,如您所知。它只会保留在后台和内存中。

当内存不足时,系统开始根据系统赋予每个应用程序本身的优先级来终止应用程序进程。

In Android activities dont get killed they'll just be moved to background.That's how Android works you cant kill an Application or basically there's not quit as you know.It'll just stay in the background and in the memory.

When you run out of memory then the system starts to kill the Application processes according to priority that the system gives to every application itself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文