你好朋友需要幫助!如何在Android中設置多個提醒
我正在使用Android,在我的應用程序中,需要一次設置多個提醒。像這樣的東西
for(int i = 0; i < n; i++)
{
// Code to set Reminder
}
目前我有下面的代碼,但是,一次只能提醒一個罰款。
StringTokenizer st=new StringTokenizer(strDateForReminder, "-");
cal.set(Calendar.DAY_OF_MONTH, Integer.parseInt(st.nextToken()));
cal.set(Calendar.MONTH, Integer.parseInt(st.nextToken())-1);
cal.set(Calendar.YEAR, Integer.parseInt(st.nextToken()));
String strTime= textView.getText().toString().trim();
// Toast.makeText(getApplicationContext(), "strTime= "+strTime, Toast.LENGTH_LONG).show();
String[] strTimeArray = strTime.split(getResources().getString(R.string.delimiter));
String[] strFirstTime=strTimeArray[0].split(":");
cal.set(Calendar.HOUR_OF_DAY, Integer.parseInt(strFirstTime[0]));
cal.set(Calendar.MINUTE, Integer.parseInt(strFirstTime[1]));
cal.set(Calendar.SECOND, 00);
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", cal.getTimeInMillis());
intent.putExtra("endTime", cal.getTimeInMillis()+90*60*1000);
intent.putExtra("title", "Reminder");
startActivity(intent);
請幫忙。提前致謝!
只要在這裏提示代碼,我們將幫助解決這些格式問題。你現在的代碼太基本了,沒有任何幫助。 –
您可以爲此使用AlarmManager clsass。 –
如果您對代碼有特別的疑問,那麼您需要發佈它。否則,看看這個問題的答案http://stackoverflow.com/questions/5976098/how-to-set-a-reminder-in-android?rq=1 –