Google アカウントにログインして利用可能なカレンダーを取得するにはどうすればよいですか?
このコードを Android で実行します
Uri calendars = Uri.parse(String.format("content://%s/calendars", "com.android.calendar"));
Cursor managedCursor = activity.managedQuery(calendars, projection, null, null, null);
// Enumerate and get all calendars
選択したカレンダーからアイテムを挿入/編集できるように、ARC アプリでも同じことをしたいと考えています。どうすればそれができますか?