Getting data from calendar on Android Wear

六眼飞鱼酱① 提交于 2019-12-05 20:06:00

WearableCalendarContract describes a 24 hour long window (starting from the current time) of calendar data. You don't see Event there, because we transfer Instances objects. As you can see in base interface for Instances, it does include Events columns too, so you should be able to fetch the data that you need from there.

If you need more than 24 hours of data, you will need sync it yourself. Query the calendar on the phone and then for each event that interests you, construct a DataItem. This is a little tricky, so I would recommend using the WearableCalendarContract instead.

I think you have to sync your data to the Wear app manually, a.k.a fetch it from the ContentProvider on the phone and then send it to the wearable via the DataItem API. Read more about syncing data between phone<->wear HERE.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!