创建可同步Android的Google日历程序(Create syncable android ca

2019-09-19 03:54发布

我开发了一个应用程序,功能来创建,并通过应用同步本地电话日历。 现在我要网上同步此日历,最好是通过本地电话帐户。 我试图通过帐户名称和类型,但在运行之后延长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

有另一种方式来创建一个在线可同步谷歌日历?

Answer 1:

你不能编程方式创建一个新的。 相反解析所有可用的人

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

并填写您的活动到现有的。

但保证,您的活动得到了同样的

sync_account

_sync_account_type


文章来源: Create syncable android calendar programmatically