1

次のように、メインアクティビティの下で保存ボタンを押すと呼び出されるメソッドを作成しました。

public  void scheduleAlarms(Context ctxt) {
        String [] calvalue = (MessageDelay.getSelectedItem().toString()).split(" ",   3);
        int H = Integer.parseInt(calvalue[1]);
        Log.v("Timer","Timer"+H);

        switch (H){

        case 9:
                H=9;
                break;
        case 12:
                H=12;
                break;

        case 3: 
                H=15;
                break;
        case 5: 
                H=17;
                break;
        case 6: 
                H=18;
                break;
        case 8: 
                H=20;
                break;

        }
        Calendar cal = Calendar.getInstance();
        cal.set(Calendar.HOUR_OF_DAY, H);
        cal.set(Calendar.MINUTE, 0);
        cal.set(Calendar.SECOND, 0);
        cal.set(Calendar.MILLISECOND, 0);

          AlarmManager mgr=(AlarmManager)getSystemService(Context.ALARM_SERVICE);
          Intent i=new Intent(getApplicationContext(), AlarmReceiver.class);
          PendingIntent pi=PendingIntent.getService(getApplicationContext(), 0, i, 0);

          mgr.setRepeating(AlarmManager.RTC,cal.getTimeInMillis(),AlarmManager.INTERVAL_DAY, pi);
          Log.v("Timer","Timer");
        }

そして、次のようにマニフェストに行を追加しました。

<receiver android:process=":remote" android:name=".AlarmReceiver"></receiver>

次に、次のようにレシーバー クラスを作成します。

public class AlarmReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        try {
            Toast.makeText(context, "broadcast received", Toast.LENGTH_SHORT).show();
            // Set up new intent
            Intent newIntent = new Intent(context, SendMessage.class);

            // Start new intent
            context.startService(newIntent);
        } catch (Exception e) {
            Toast.makeText(context, "There was an error somewhere, but we still received an alarm", Toast.LENGTH_SHORT).show();
            e.printStackTrace();
        }
    }
}

しかし、何らかの理由でエミュレータでテストすると、ブロードキャストを受信できません:(

私が間違っていることを誰かにアドバイスしてもらえますか?

よろしくお願いします

4

1 に答える 1

2

をサービスに使用していますがPendingIntent、ブロードキャストを受信することを期待しています。を使ってみてくださいPendingIntent.getBroadcast()

于 2012-07-05T03:17:19.787 に答える