0
我想顯示我的鬧鐘在textview中設置的當前時間,但我無法弄清楚該怎麼做。有什麼建議麼?在textView中顯示設置鬧鐘
我想顯示我的鬧鐘在textview中設置的當前時間,但我無法弄清楚該怎麼做。有什麼建議麼?在textView中顯示設置鬧鐘
EditText edittime;
edittime=(EditText) findViewById(R.id.edittime);
您的報警代碼......
StringBuilder sb=new StringBuilder();
sb.append(mHour).append(":").append(mMinute);
String str=sb.toString();
edittime.setText(str);
嘗試使用這個..
String nextAlarm = Settings.System.getString(getContentResolver(),
Settings.System.NEXT_ALARM_FORMATTED);
看吧http://stackoverflow.com/questions/2600378/android-得到-時間的最下一個報警 – Maxim 2012-01-28 00:00:55