-2

我到处寻找这个解决方案,大多数回复都要求在启动接收器中设置警报。

我已经实现了一个引导接收器并启动了一项服务并使用 set 方法设置了一个警报。

服务启动正常,但未设置警报。

请帮助我坚持这一点。

如果你愿意,我也可以发布一些,但启动接收器工作正常,因为我也在启动服务

public class MyReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {
    SharedPreferences sharedPref = context.getSharedPreferences(
            Util.SHARED_PREF_NAME, Context.MODE_PRIVATE);
    long curTime = System.currentTimeMillis();
    long endTime = sharedPref.getLong(Util.END_TIME, -1);
    long startTime = sharedPref.getLong(Util.START_TIME, -1);

    if (curTime < endTime && startTime >= curTime) {
        Intent intent1 = new Intent(context, HUD.class);
        PendingIntent pintent = PendingIntent.getService(context, 1987,
                intent1, PendingIntent.FLAG_CANCEL_CURRENT);
        AlarmManager alarm = (AlarmManager) context
                .getSystemService(Context.ALARM_SERVICE);
        alarm.setRepeating(AlarmManager.RTC_WAKEUP, endTime, 100, pintent);
        Log.e("alaram set", endTime + " " + curTime);
    }

    Intent service = new Intent(context, HUD.class);
    context.startService(service);
}
}

MyReceiver.java

 <receiver
        android:name=".MyReceiver"
        android:enabled="true"
        android:exported="true" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" />
        </intent-filter>
    </receiver>

清单.xml

开机后服务启动成功

alarm.setRepeating(AlarmManager.RTC_WAKEUP, endTime, 100, pintent);

警报不起作用。

我想我清楚了我的问题。

请帮忙

4

1 回答 1

0
Intent intent1 = new Intent(context, HUD.class);
PendingIntent pintent = PendingIntent.getService(context, 1987,
            intent1, PendingIntent.FLAG_CANCEL_CURRENT);
AlarmManager alarm = (AlarmManager) context
            .getSystemService(Context.ALARM_SERVICE);
Calendar cal = Calendar.getInstance();
cal.add(Calendar.SECOND, 30);
alarm.setInexactRepeating(AlarmManager.RTC_WAKEUP,
                cal.getTimeInMillis(), 100, pending);

试试你的,setInexactRepeating而不是setRepeating那个更优化性能的方法。

于 2013-08-30T11:42:40.980 回答