1

私のアプリにはいくつかのファイルがありますが、現在重要なのはそのうちの 3 つだけです。アラーム音と通知機能付きのリマインダーアプリです。チェックボックスとそのリスナーを含む maincode.java ファイルがあります。ユーザーがチェックボックスをオンにすると、AlarmManager が AlarmReceiver.java にインテントを送信し、MyService.java が開始されます。MyService java には、サウンドの再生に関するコードが含まれています。コードは部分的です。MyService.java:

public void onCreate() {
    Toast.makeText(this, "My Service Created", Toast.LENGTH_LONG).show();
    Log.d(TAG, "onCreate");

    player = MediaPlayer.create(this, R.raw.sound);
    player.setLooping(false); // Set looping
}

@Override
public void onDestroy() {
    Toast.makeText(this, "My Service Stopped", Toast.LENGTH_LONG).show();
    Log.d(TAG, "onDestroy");
    player.stop();
}

@Override
public void onStart(Intent intent, int startid) {
    Toast.makeText(this, "My Service Started", Toast.LENGTH_LONG).show();
    Log.d(TAG, "onStart");
    player.start();
}

AlarmReceiver.java:

public void onCreate() {
    Toast.makeText(this, "My Service Created", Toast.LENGTH_LONG).show();
    Log.d(TAG, "onCreate");

    player = MediaPlayer.create(this, R.raw.sound);
    player.setLooping(false); // Set looping

maincode.java の重要な部分:

    cb1 = (CheckBox) findViewById(R.id.CheckBox01);
    cb1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
        @Override
        public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) 
        {           
            if (cb1.isChecked()) 
                {
                 if (GlobalVars.getHourOfDay() >= 0) 
                 {
                     Toast.makeText(maincode.this, "ok", Toast.LENGTH_SHORT).show();
                     rem1.setText(GlobalVars.getReminder1name());
                        Intent intent = new Intent(maincode.this, AlarmReceiver.class);
                        PendingIntent pendingIntent = PendingIntent.getBroadcast(bInsulinReminder.this, 0,
                          intent, PendingIntent.FLAG_UPDATE_CURRENT);
                        AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
                        Calendar cal = Calendar.getInstance();
                        cal.set(Calendar.HOUR_OF_DAY, GlobalVars.getHourOfDay());
                        cal.set(Calendar.MINUTE, GlobalVars.getMinute());
                        cal.set(Calendar.SECOND, 0);
                        cal.set(Calendar.MILLISECOND, 0);
                        alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis()+ 3000, 6000, pendingIntent);

                 }
                 Toast.makeText(maincode.this, "Checked", Toast.LENGTH_SHORT).show();
                } else {
                    rem1.setText("No reminder set");
                    Toast.makeText(maincode.this, "Not checked", Toast.LENGTH_SHORT).show();
                }
        }

        });

(rem1 はリマインダー ボタンで、そのテキストはユーザーが必要とする名前に依存します)

コードの問題は、アラームを開始すると停止できないことです。MyService.java に player.stop() コマンドがあることは知っていますが、チェックボックスがオフになっている maincode.java の最後から呼び出すにはどうすればよいですか?

4

1 に答える 1

3

いいえ、リスナーから直接行うことはできません。次の方法でアラームを無効にできます。

Intent intent = new Intent(maincode.this, AlarmReceiver.class);
PendingIntent pendingIntent =  PendingIntent.getBroadcast(bInsulinReminder.this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
pendingItem.cancel();
alarmManager.cancel(pendingItem);

または(私が思うに)AlarmReceiverがBroadcastReceiverの実装であり、onReceiveメソッドからServiceクラスの実装であるMyServiceを開始する場合。

したがって、このアラームを maincode.java リスナー内から停止したい場合は、AlarmReceiver で使用した PendingIntent を再作成し、stopService メソッドを実行することで MyService を停止できます。

それが役立つことを願っています。

于 2011-01-27T19:29:57.900 に答える