gpt4 book ai didi

android - 如何为安卓日历事件添加颜色?

转载 作者:行者123 更新时间:2023-11-29 20:12:44 25 4
gpt4 key购买 nike

我想为android日历事件添加颜色,我使用了下面的代码

ContentResolver cr = context.getContentResolver();
ContentValues values = new ContentValues();
values.put(Events.DTSTART, startMillis);
values.put(Events.DTEND, endMillis);
values.put(Events.TITLE, phNumber);
values.put(Events.DISPLAY_COLOR, 0xffff0000);
values.put(Events.CALENDAR_ID, calID);
values.put(Events.EVENT_TIMEZONE, "UTC");
Uri uri = cr.insert(Events.CONTENT_URI, values);

但是这段代码没有为事件添加颜色。即使我在使用 values.put(Events.DISPLAY_COLOR, 0xffff0000) 代码时也无法在日历中添加事件。我如何实现 Events.DISPLAY_COLOR?

最佳答案

尝试使用 Events.EVENT_COLOR 而不是 Events.DISPLAY_COLOR

作为引用,您可以使用此 link使用日历

关于android - 如何为安卓日历事件添加颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34523259/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com