我想设置alarms 功能,我把时间存储在一个cvs文件中。格式是hh:mm,如02:13。我想在这个时间点设置闹钟。
SimpleDateFormat dt = new SimpleDateFormat("hh:mm");
dt.parse(str); // GET TIME HERE
NotificationManager manger = (NotificationManager) this.getActivity().getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(R.drawable.launcher, "Mosque Prayer Times", time);
PendingIntent contentIntent = PendingIntent.getActivity(this.getActivity(), 0, new Intent(this.getActivity(), AlarmReceiver.class), 0);
notification.setLatestEventInfo(this.getActivity(), name, title, contentIntent);
notification.flags = Notification.FLAG_INSISTENT;
notification.sound = Uri.parse("android.resource://com.trib.app.mosqueprayertimes/raw/adhan.mp3");
manger.notify(id, notification);
}
我如何从date 格式中提取时间然后在通知中设置?