Установка повторяющегося уведомления с AlarmManager - Android

Я использую TimePicker для получения определенного времени от пользователя. Затем я использую это время для установки повторяющегося будильника в это время каждый день. Когда сработает будильник, я хочу, чтобы уведомление отправлялось пользователю. Мой код кажется правильным, и я не получаю никаких ошибок в Android Studio, но когда я запускаю это приложение и устанавливаю его в определенное время... ЭТО НИКОГДА НЕ ВЫХОДИТ. пожалуйста помоги. Также я не смог найти ничего, что показывало бы мне, как получить выбор пользователя AM или PM с помощью TimePicker. Мой код ниже. Заранее спасибо.

Вот MyActivity (тот, который открывается при запуске)

public class MyActivity extends Activity {

TimePicker mTimePicker;
Button setAlarm;
private int hour;
private int minute;
PendingIntent mPendingIntent;
int AM_PM;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_my);



    setAlarm = (Button) findViewById(R.id.setUpAlarm);


    mTimePicker = (TimePicker) findViewById(R.id.timePicker);

    setAlarm.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {


            setAlarm();



        }
    });



}

private void setAlarm() {
    hour = mTimePicker.getCurrentHour();
    minute = mTimePicker.getCurrentMinute();

    Intent intent = new Intent(this, NotifyService.class);
    AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
    mPendingIntent = PendingIntent.getService(this, 0, intent, 0);

    Calendar calendar = Calendar.getInstance();
    calendar.set(Calendar.SECOND , 0 );
    calendar.set(Calendar.MINUTE , 0 + minute);
    calendar.set(Calendar.HOUR , 0 + hour);
    calendar.set(Calendar.AM_PM , Calendar.PM);


    Toast.makeText(this, calendar.get(Calendar.MINUTE) + "    " + calendar.get(Calendar.HOUR), Toast.LENGTH_SHORT).show();

    //  * 60 * 60 * 24

    alarmManager.setRepeating(AlarmManager.RTC_WAKEUP , calendar.getTimeInMillis() , 1000 * 60 * 60 * 24 , mPendingIntent);

    // Toast.makeText(MyActivity.this , "Alarm Set" , Toast.LENGTH_SHORT).show();
}

Вот мой класс уведомлений

public class NotifyService extends Service {
@Override
public IBinder onBind(Intent intent) {
    return null;
}

@Override
public void onCreate() {

    Uri sound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

    NotificationManager mNM = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    Intent intent = new Intent(this.getApplicationContext() , MyActivity.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 , intent ,0 );

    Notification mNotify = new Notification.Builder(this)
            .setContentTitle("Come Back!")
            .setContentText("Have you seen todays tip?")
            .setSmallIcon(R.drawable.ic_launcher)
            .setContentIntent(pendingIntent)
            .setSound(sound)
            .build();

    mNM.notify( 1 , mNotify);

}

}

Мой манифест

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.androidy.notificationapp" >

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MyActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

1 ответ

Решение

Вы должны заявить о своей услуге в манифесте, иначе она не может быть запущена.

Также getCurrentHour() всегда возвращает час в 24-часовом формате, не нужно знать, введен ли пользователь в AM или PM.

http://developer.android.com/reference/android/widget/TimePicker.html

Вы также можете подумать о том, чтобы переместить всю работу в вашем Сервисе из onCreate() в onStartCommand(), потому что onCreate() вызывается только в том случае, если ваш Сервис еще не существует, что может произойти, потому что вы, кажется, не останавливаетесь это (что вы могли бы также рассмотреть возможность).

http://developer.android.com/guide/components/services.html

Другие вопросы по тегам