Android - 在启动时启动的活动+ moveTaskToBack =已杀死

时间:2013-07-23 13:41:27

标签: android startup

我的应用程序就像手机防护一样,应该在启动时运行(或者在用户启动时运行)并继续运行直到用户手动无法完成它。当应用程序启动时(在设备启动完成后),我使用moveTaskToBack将其隐藏在后台。大约12秒后,我的应用程序停止工作(我怀疑系统杀死),没有任何通知,根本没有日志(但仍保留在历史堆栈中)。由app计时器和日志检查,当我通过单击图标启动程序时 - 新实例运行。正如我注意到的,如果我从Handler执行moveTaskToBack,甚至延迟了500ms - 应用程序将不会被杀死!测试星系标签2(4.1.2)和阿尔卡特一触(2.3.6)。这里是重现的示例代码:

MainActivity

public class MainActivity extends Activity
{
    Timer timerCheck;
    int ticks = 0;

    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        timerCheck = new Timer();
        timerCheck.schedule(taskCheck, 0, 1000);

        if (IsStartup())
            moveTaskToBack(true);

//      if (IsStartup())
//      {
//          new Handler().postDelayed(new Runnable()
//          {
//              @Override
//              public void run()
//              {
//                  moveTaskToBack(true);
//              }
//          }, 1000);
//      }
    }

    TimerTask taskCheck = new TimerTask()
    {
        @Override
        public void run()
        {
            runOnUiThread(timerTickCheck);
        }

        private Runnable timerTickCheck = new Runnable()
        {
            public void run()
            {
                Log.e("testapp", "alive for " + ++ticks * 1000 + " ms");
            }
        };
    };

    private boolean IsStartup()
    {
        return getIntent().hasExtra("startup");
    }
}

StartupReceiver

public class StartupReceiver extends BroadcastReceiver
{
    @Override
    public void onReceive(Context c, Intent i)
    {
        Intent in = new Intent();
        in.setClassName("com.example.startuptest",
                "com.example.startuptest.MainActivity");
        in.putExtra("startup", "1");
        in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
                | Intent.FLAG_ACTIVITY_SINGLE_TOP);
        c.startActivity(in);
    }
}

清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.startuptest"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

        <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >


        <receiver android:name="com.example.startuptest.StartupReceiver" >
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>

        <activity
            android:name="com.example.startuptest.MainActivity"
            android:label="@string/app_name"
            android:launchMode="singleTop" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

所以有我的问题 - 为什么android系统有这样的行为?无论如何要在启动时立即隐藏应用程序?

1 个答案:

答案 0 :(得分:0)

如果需要它的资源,Android操作系统可以杀死任何后台进程。在您的情况下,系统启动是一个高度耗费资源的时期,而后台活动在保留什么方面具有相当低的优先级。 无论如何,如果你想在后台长时间运行某些东西,我建议你查看服务: http://developer.android.com/guide/components/services.html