流星悟语 发表于 2015-8-29 12:42:36

Tizen系统日历应用程序控制/编辑代码

在您自己的应用程序中使用设备的日历应用程序如何处理日程表的代码。
—使用“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", .id.uid]);
    var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/social/edit", null, null, null, );
    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);
页: [1]
查看完整版本: Tizen系统日历应用程序控制/编辑代码