1

我开发的应用程序就像电话守卫一样,应该在启动时(或由用户启动时)运行并继续运行,直到用户手动完成它。当应用程序启动时(设备启动完成后),我使用 moveTaskToBack 将其隐藏在后台。大约 12 秒后,我的应用程序停止工作(我怀疑被系统杀死),没有任何通知,根本没有日志(但仍留在历史堆栈中)。由带有日志的应用程序计时器检查,以及当我通过单击图标启动程序时 - 新实例运行。正如我所注意到的,如果我从延迟了 500 毫秒的 Handler 执行 moveTaskToBack - 应用程序不会被杀死!在galaxy tab 2 (4.1.2) 和alcatel one touch (2.3.6) 上测试。这里是重现的示例代码:

主要活动

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");
    }
}

启动接收器

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系统有这样的行为?无论如何要在启动时立即隐藏应用程序?

4

1 回答 1

0

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

于 2013-07-23T14:20:28.940 回答