AlarmManager似乎没有执行 - 为什么?

时间:2011-12-12 20:31:39

标签: android alarmmanager

我有以下代码来触发警报,当它触发时意味着启动另一个基本上是午睡警报的活动。经过Google和SO的大量搜索后,我感到很茫然。我相信我有AlarmManager的正确设置,但它应该启动的Activity永远不会启动。

顺便说一句,最终我想使用napTime变量来设置AlarmManager将触发的时间,但出于测试目的,我只是想让它以正确的方式启动。

这是设置午睡的代码。 Log.e("Nap time", "" + napTime);行始终显示为napTime选择的正确数字,因此我知道该方法正在执行。

private void setNap(int napTime) {
        AlarmManager am = (AlarmManager) getSystemService(Context.ALARM_SERVICE);       
        Intent i = new Intent(getApplicationContext(), NapAlarm.class);
//      i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        PendingIntent pi = PendingIntent.getActivity(getApplicationContext(), 0, i, 0);     
        am.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), pi);

        Log.e("Nap time", "" + napTime);

        TextView nap = (TextView) findViewById(R.id.nap);
        nap.setText("nap set");
    }

启动活动的代码:

import android.app.Activity;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.WindowManager;
import android.view.View.OnClickListener;
import android.widget.Button;

public class NapAlarm extends Activity implements OnClickListener {

    MediaPlayer mp;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.alarm_layout);
        getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED);

        Button dButton = (Button) findViewById(R.id.dismissButton);
        dButton.setOnClickListener(this);

        Button sButton = (Button) findViewById(R.id.snoozeButton);
        sButton.setOnClickListener(this);

        new Thread(new Runnable() {

            public void run() {
                try {

                    Log.e("Got this far", "In the alarm");

                    mp = MediaPlayer.create(getApplicationContext(), R.raw.alarm);
                    mp.start();
                    mp.setLooping(true);

                } catch (Exception e) {
                }
            }
        }).start();
    }

    @Override
    public void onClick(View v) {

        switch (v.getId()) {

        case R.id.dismissButton:
            mp.stop();
            this.finish();
            break;

        case R.id.snoozeButton:
            Button sButton = (Button) findViewById(R.id.snoozeButton);
            sButton.setText("I'm sorry, this app currently does not support snoozing, you must wake up.");
            break;
        }
    }
}

如果我自己运行第二段代码,它会工作,声音会播放等等。但是如果我从较大的项目中运行它,AlarmMananger应该创建一个警报来触发它,它永远不会发生。

我有什么东西可以忽略吗?

1 个答案:

答案 0 :(得分:0)

您的NapTime活动应该像这样扩展BroadCast接收器..

public class NapAlarm extends BroadcastReceiver {

@Override
 public void onReceive(Context context, Intent intent) {
//Here do your naptime code.

//YOu could actually have your NapTime class launch from this reciever if you want.
}

}

请务必注册这样的收件人..

<receiver  android:process=":remote" android:name="NapAlarm"></receiver>

请参阅此处了解更多信息

Alarm Manager tutorial