0

我有这段代码来自动启动我的服务,我认为当 alarmmanager 等待 60 秒时 AlarmON.class 运行,但不是。错误在哪里?

当我重新启动时,我看到了 toast:“服务已创建”和“服务已启动”。

谢谢您的帮助!

public class AutoStart extends BroadcastReceiver{

    @Override
    public void onReceive(Context context, Intent intent) {
    Intent serviceIntent = new Intent();
    serviceIntent.setAction("com.example.startatboot.UnUsedService");
    context.startService(serviceIntent);
    }
}

和服务:

public class UnUsedService extends Service {
private PendingIntent pendingIntent;

@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 onStart(Intent intent, int startId) {
Toast.makeText(this, "Service Started", Toast.LENGTH_LONG).show();

Intent myIntent = new Intent(UnUsedService.this, AlarmON.class);
pendingIntent = PendingIntent.getService(UnUsedService.this, 0, myIntent, 0);

     AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE);

     Calendar calendar = Calendar.getInstance();
     calendar.setTimeInMillis(System.currentTimeMillis());
     calendar.add(Calendar.SECOND, 60);
     alarmManager.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(),    pendingIntent);

Toast.makeText(UnUsedService.this, "Start Alarm", Toast.LENGTH_LONG).show();
}};
4

1 回答 1

0

你不需要打电话

calendar.setTimeInMillis(System.currentTimeMillis());

因为...

Calendar calendar = Calendar.getInstance(); does the same thing.

这就像说给我当前时间,然后将当前时间设置为当前时间。

还可以尝试将代码从 onStart 移动到 onCreate,我已经看到 Android 不会为服务调用 onStart 的问题。

根据您的评论,我编辑了我的帖子。

您是否在清单中注册了 AlarmON 服务?例如在应用程序部分:

<service
    android:name=".AlarmON"
    android:label="@string/service_name" >
</service>
于 2012-12-12T21:21:03.463 回答