2

我开发了一个应用程序功能来通过应用程序创建和同步本地电话日历。现在我必须在线同步这个日历,最好是通过本地电话帐户。我尝试通过帐户名称和类型扩展 URI 的内容值参数(请参阅下面的 API LVL < 8 参数列表),但在此之后运行到日历冻结。

_id
sync_account
_sync_account_type
_sync_id
_sync_version
_sync_time
_sync_local_id
_sync_dirty
_sync_mark
url
name
displayName
hidden
color
access_level
selected
sync_events
location
timezone
ownerAccount

还有另一种方法可以创建在线可同步的谷歌日历吗?

4

1 回答 1

1

您不能以编程方式创建一个新的。而是解析所有可用的

Uri.parse("content://com.android.calendar/calendars",null, null, null, null);

并将您的事件填写到现有事件中。

但请确保您的活动相同

sync_account

_sync_account_type
于 2012-07-25T14:47:27.297 回答