在ContentValues中使用Google日历的预设事件颜色

时间:2018-05-30 13:18:02

标签: android google-calendar-api android-contentprovider android-contentresolver

通过配置ContentValues创建事件时,可以使用Google日历提供的某些预设颜色。

enter image description here

我尝试使用

ContentValues event = new ContentValues();
    event.put("eventColor", 0xffff3300);

但是点击事件后,这会变回默认值

1 个答案:

答案 0 :(得分:0)

您可以通过可选的colorId属性设置event的颜色。要检查颜色的有效值,您可以转到colors endpoint并使用get方法列出所有可用的颜色。

此外,您可能还有兴趣从Android Open Source Projectthis SO post进行查看。