2

AccountManager我可以获取帐户类型和帐户名称,但我无法获取帐户颜色。如何在日历应用程序中获取代码。

4

1 回答 1

2

从日历应用程序中获取代码

    Uri uri = CalendarContract.Calendars.CONTENT_URI;
    Cursor calendarCursor = getContentResolver().query(uri, projection, null, null, null);
int colorColumn = calendarCursor.getColumnIndexOrThrow(Calendars.CALENDAR_COLOR);

      int color = calendarCursor.getInt(colorColumn);

该整数返回与 Android 手机同步的 Accounts 的颜色代码。

于 2012-08-17T07:35:57.263 回答