gpt4 book ai didi

android - 删除所有本地日历事件有效,但会触发删除太多事件的错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:28:09 24 4
gpt4 key购买 nike

我使用以下方法在本地(ICS 和 JB)删除谷歌日历上的所有事件:

public void deleteAll(){
String selection = "(" + CalendarContract.Events.CALENDAR_ID + " = ?)";
String[] selectionArgs = new String[] { Integer.toString(this.calId) };
ContentResolver cr = context.getContentResolver();
int rows = cr.delete(CalendarContract.Events.CONTENT_URI, selection, selectionArgs);
Log.d(TAG, rows + " events deleted");
}

一切正常,但我收到一个恼人的警告:日历删除过多

Delete limit exceeded

There are 21 deleted items for Calendar, account
xxxxx.xxxxx@gmail.com. What would you like to do?"

Delete the items.
Undo the deletes.
Do nothing for now.

显示错误的原因是什么,有谁知道避免错误的方法吗?我正在使用 HTC One-X

问候R

最佳答案

我遇到过几次,这很烦人!不幸的是,这是一个已知且持续存在的问题。有一个 existing bug report上,但仍未更正。

要解决此问题,您必须清除本地日历缓存。

为此,请在您的设备上执行以下操作:

普通安卓:

Settings > Applications > Manage Applications > Calendar Storage > Clear data

HTC Sense:

Settings > Apps > All > Calendar Storage > Clear data

一旦你这样做了,问题就会消失。

关于android - 删除所有本地日历事件有效,但会触发删除太多事件的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13962009/

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