0

ユーザーが設定した特定の日時に通知を生成するために、以下のコードを使用しています。

public class MainActivity extends Activity {
TimePicker timePicker;
DatePicker datePicker;
Button button1;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
     button1 = (Button) findViewById(R.id.button1);

     button1.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View arg0) {
             timePicker = (TimePicker) findViewById(R.id.timePicker1);
                datePicker = (DatePicker) findViewById(R.id.datePicker1);    
                AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);     

                Calendar calendar = Calendar.getInstance();     


                calendar.set(Calendar.YEAR, datePicker.getYear());
                calendar.set(Calendar.MONTH, datePicker.getMonth());
                calendar.set(Calendar.DAY_OF_MONTH, datePicker.getDayOfMonth());                 
                calendar.set(Calendar.HOUR_OF_DAY, timePicker.getCurrentHour());
                calendar.set(Calendar.MINUTE, timePicker.getCurrentMinute());
                calendar.set(Calendar.SECOND, 0);

                Intent inn = new Intent(MainActivity.this,AlaramDetail.class);
                PendingIntent displayIntent = PendingIntent.getActivity(
                        getBaseContext(), 0,inn, 0);       
                alarmManager.set(AlarmManager.RTC_WAKEUP, 
                        calendar.getTimeInMillis(), displayIntent);



        }
    });

}
}

以下は、通知を生成するためのコードを含む AlaramDetail クラスです。

public class AlaramDetail extends Activity {

@SuppressWarnings("deprecation")
@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.detail);
    NotificationManager nm = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
    Notification notification = new Notification(android.R.drawable.stat_notify_more, "This is important notification",System.currentTimeMillis());
    String title = "pay attention";
    String detail = "this is implortant";
    Intent intent = new Intent(AlaramDetail.this,AlaramDetail.class);
    finish();
    PendingIntent pintent = PendingIntent.getActivity(AlaramDetail.this, 0,intent ,0 );

    notification.setLatestEventInfo(AlaramDetail.this, title, detail, pintent);

    notification.flags=Notification.FLAG_AUTO_CANCEL;
    notification.defaults|=Notification.DEFAULT_SOUND;
    notification.defaults|=Notification.DEFAULT_LIGHTS;
    notification.defaults|=Notification.DEFAULT_VIBRATE;
    nm.notify(1, notification);
}   

} 

上記のコードは正しく機能しています。これを行った後、ユーザーが入力した複数の日付と時刻を格納するデータベースを作成しました。データベースは日付と時刻を文字列として格納します。データベースに格納された特定の日付と時刻に通知を生成したいと思います。日付と時刻を渡す方法がわかりませんtime データベースから calendar.set(int field,int value) コマンドへ時間。

4

1 に答える 1