|
在您自己的应用程序中使用设备的日历应用程序如何处理日程表的代码。
—使用“tizen.calendar”的应用程序ID别名。
—编辑操作启动编辑屏幕编辑现有的日程信息
- function eventSearchSuccessCallback(events) {
- var eventType = new tizen.ApplicationControlData("http://tizen.org/appcontrol/data/social/item_type", ["event"]);
- var itemId = new tizen.ApplicationControlData("http://tizen.org/appcontrol/data/social/item_id", [events[0].id.uid]);
- var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/social/edit", null, null, null, [eventType, itemId]);
- tizen.application.launchAppControl(appControl, "tizen.calendar",
- function() {
- console.log("launch appControl succeeded");
- }, function(e) {
- /* Error handling */
- }, null);
- }
- var calendar = tizen.calendar.getDefaultCalendar("EVENT");
- var filter = new tizen.AttributeFilter('description', 'CONTAINS', 'Tizen');
- calendar.find(eventSearchSuccessCallback, null, filter, null);
复制代码 |
|