如何防止活动在Android应用程序中销毁?

时间:2012-10-18 19:47:46

标签: android android-activity

我使用下一代码使用可用的客户端共享一些文本:

    Intent share = new Intent(Intent.ACTION_SEND);
    share.putExtra(Intent.EXTRA_TEXT, "Here's some text for Twitter.");
    share.setType("text/plain");
    startActivity(Intent.createChooser(share, "Share this via"));       

它有效(打开Twitter客户端,作为示例),但当我关闭该应用程序时,我发现我的应用程序也关闭了。但我需要我的应用程序仍然活跃。我需要做些什么?

1 个答案:

答案 0 :(得分:3)

Your app will be in the background, onResume and onPause will both be called,前提是操作系统有足够的内存来保留新应用和所有旧应用。