gpt4 book ai didi

android - 使用 Intent 编辑日历事件不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:44:25 26 4
gpt4 key购买 nike

好的,我在这里非常准确地阅读了文档:http://developer.android.com/guide/topics/providers/calendar-provider.html#update-event它写的是这样的:

// Here is an example of an intent that sets a new title for a specified event and lets users edit the event in the Calendar.

long eventID = 208;
Uri uri = ContentUris.withAppendedId(Events.CONTENT_URI, eventID);
Intent intent = new Intent(Intent.ACTION_EDIT)
.setData(uri)
.putExtra(Events.TITLE, "My New Title");
startActivity(intent);

对我来说它不起作用 - 它打开正确的事件,但无法编辑它 - 所有字段都是只读的。只有我可以更改的字段是时区和提醒。其他一切都是只读的。我做错了什么吗?

我的 API 级别是 14 (ICS)

最佳答案

所以我认为您没有做错任何事 - 我通过命令行将同一件事的基本实现放在一起,并且适用相同的限制:

am start -a android.intent.action.EDIT --es title "New Title" content://com.android.calendar/events/1

我只能编辑与您相同的字段 - 您最好执行 ACTION_VIEW 并让用户决定编辑(抱歉,我没有更好的答案给您, 这有点烦人)

关于android - 使用 Intent 编辑日历事件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13072275/

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