0

我想在以下情况下自动启动我的 Android 应用程序:

  1. 重启
  2. 应用程序已通过 TaskManager 或 Ram 清除停止

我在网上搜索并找到有关 Android 服务的内容。我实现了一些代码以在重新启动时启动我的服务,但我不工作,而且我不知道如何了解案例 2。

你能给我一个建议吗?

这是我的服务代码:

在 manifest.xml 上

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


<service android:name="TimetableService">
 <intent-filter>
  <action android:name=".TimetableService" />
 </intent-filter>
</service>

<receiver android:enabled="true" android:name=".OnBootReceiver" android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</receiver>

OnBootReceiver:

public void onReceive(Context context, Intent intent) 
{
    Intent serviceIntent = new Intent();
    serviceIntent.setAction("TimetableService");
    context.startService(serviceIntent);
}

时间表服务:

 public class TimetableService extends Service 
 {

@Override
public IBinder onBind(Intent intent) {

    return null;

}

@Override
public void onCreate() {
    super.onCreate();

    Toast.makeText(this, "Service Created", Toast.LENGTH_LONG).show();

}

@Override
public void onDestroy() {
    super.onDestroy();

    Toast.makeText(this, "Service Destroyed", Toast.LENGTH_LONG).show();

}

@Override
public void onStart(Intent intent, int startId) {

    super.onStart(intent, startId);

    Toast.makeText(this, "Service Started", Toast.LENGTH_LONG).show();

}

}

4

2 回答 2

0

我会考虑使用AlarmManager来安排您的应用程序在一天中的特定时间运行。这样,如果有什么东西关闭了你的应用程序并不重要,警报管理器会在你指定的时间再次唤醒它。

于 2012-05-22T14:05:18.790 回答
0

让我们使用服务来自动启动应用程序

现在,当启动完成时,您可以使用以下代码重新启动您的服务。

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class MyStartupIntentReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
 // check for interreupted flag in shared pref
 // if true restart your service
}
}

将以下代码添加到您的清单中

<receiver android:name="MyStartupIntentReceiver">
<intent-filter>    
<action
android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
于 2015-01-28T12:16:21.123 回答