1

使用我的应用程序向日历添加新事件时如何传递特定时区?假设我手机的默认时区是 (GMT+1:00) London, Dublin.. 我想通过 (GMT+8:00) Hong Kong。谢谢。

我使用这样的东西:

Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setType("vnd.android.cursor.item/event");
intent.putExtra("beginTime", stime);
intent.putExtra("allDay", false);
//intent.putExtra("rrule", "FREQ=YEARLY");
intent.putExtra("endTime", etime);
intent.putExtra("title", eventName);
startActivity(intent);
4

0 回答 0