我有一个带有两个 TextView 的小部件,显示时间和日期。
我只是希望这批代码每秒发生一次:
views.setOnClickPendingIntent(R.id.rl, pendingIntent);
java.util.Date noteTS = Calendar.getInstance().getTime();
String time = "kk:mm";
String date = "dd MMMMM yyyy";
views.setTextViewText(R.id.tvTime, DateFormat.format(time, noteTS));
views.setTextViewText(R.id.tvDate, DateFormat.format(date, noteTS));
所以我需要一种简单的方法来定期在小部件中更新 TextView,以便时间变化超过标准的 30 分钟。谢谢