AlarmManager不断将活动带到前台

时间:2016-05-04 08:38:34

标签: android android-activity broadcastreceiver alarmmanager background-process

我正在尝试编写将在后台运行并调用服务器API的代码。谷歌搜索引导我使用AlarmManager,这是我的代码:

            AlarmManager manager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
            int interval = 4000;

            Intent alarmIntent = new Intent(getApplicationContext(), AlarmReceiver.class);
            PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, alarmIntent, 0);

            manager.setInexactRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), interval, pendingIntent);

这里的问题是,当我的应用程序在前台(当前在Android主菜单或其他应用程序中)时,无论何时警报触发,它都会将我的活动发送到前面。

任何人都知道为什么会这样,我怎么能避免这种情况?我有一个由AlarmReceiver类启动的服务,我希望它在后台运行。

AlarmReceiver.class:

public class AlarmReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {

    Intent i = new Intent(context, LogService.class);
    i.putExtra("param1", "index.html");
    i.putExtra("param2",
        "http://www.vogella.com/index.html");
    context.startService(i);
}

}

LogService.class

public class LogService extends IntentService{

    public LogService() {
        super("LogService");
        // TODO Auto-generated constructor stub
    }

    @Override
    protected void onHandleIntent(Intent intent) {
        String param1 = intent.getStringExtra("param1");
        String param2 = intent.getStringExtra("param2");

        Log.i("Hello from logservice!", "!!! -- " + param1 + " - " + param2);
    }

}

向清单添加了内容:

<receiver android:name="com.example.app.alarm.AlarmReceiver">
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED"/>
    </intent-filter>
</receiver>

<service android:name="com.example.app.alarm.LogService" >
</service>

提前致谢!

1 个答案:

答案 0 :(得分:0)

阅读后,我发现自API 19以来,所有重复警报都是不准确的。知道了这一点后,我尝试使用 setRepeating 功能。我不知道它为什么表现不同,但现在一切正常。