如何使用我的应用向日历添加新活动时传递特定时区?假设我的手机的默认时区是(GMT + 1:00)伦敦,都柏林..我想通过(GMT + 8:00)香港。感谢。
我使用这样的东西:
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);