アプリを使用してカレンダーに新しいイベントを追加するときに、特定のタイム ゾーンを渡すにはどうすればよいですか? 私の電話のデフォルトのタイムゾーンが (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);