大家好,我正在开发一个有闹钟的应用程序。当用户设置闹钟时,应用程序应该告诉用户闹钟响起还有多长时间。
我正在使用 simpleDateFormater 将毫秒转换为正确的格式。闹钟在设定的时间正确响起,但在格式化的时间里,我总是得到额外的 11 小时。
例如。如果现在时间是凌晨 1:00,我将闹钟设置为凌晨 1:10。我收到消息说闹钟设置为 11 小时 10 分钟而不是 10 分钟。闹钟在凌晨 1:10 正确响起。
我附上了相关代码,如果您需要查看更多代码,请告诉我。
long current = System.currentTimeMillis();
long time_left = set_time-current; // set_time is the time the alarm should go off , and it is set else where in the activity.
String datePattern = "h ' hours and' mm ' minutes'";
SimpleDateFormat formatter = new SimpleDateFormat(datePattern);
String timeLeft_string = formatter.format(time_left);
Toast.makeText(getBaseContext(), "Alarm set for"+timeLeft_string, Toast.LENGTH_SHORT).show();
Intent intent = new Intent(getBaseContext(), AlarmReceiver.class);
intent.putExtra("id", mRowId);
PendingIntent pendingIntent = PendingIntent.getBroadcast(getBaseContext(), mRowId_int, intent, 0);
AlarmManager alarmManager = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
alarmManager.set(AlarmManager.RTC_WAKEUP, set_time, pendingIntent);
以下是我的问题: 1. 11 小时从何而来?2.我该如何摆脱它?
感谢您花时间阅读本文以及您可以提供的任何帮助。