언어 설정

Menu
Sites
Language
Is it possible to customize the reminder notification from calender api

I'd like to add an event and its reminder using calender API. When the reminder is invoked, the calender API will show a notification. By clicking in the notification the control will be gone to the default calender application in Tizen.

1) I'd like to get control to my application by clicking on the notification.
2) I'd like to customize the notification logo etc. 
3) I need to pass some ApplicationControlData also to my app.

Edited by: Brock Boland on 17 3월, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

2 댓글
Lakshmi Grandhi
Hi Anfas, The points which you mentioned to develop are real use cases, but i wouldn't find any information how to achieve , i will forward your post to support team for more information.
Daniel Holmlund
Hi Anfas, Here is the link to the article on Notifications in the developer guide. https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.web.appprogramming%2Fhtml%2Fguide%2Fui_guide%2Fnotification.htm A notification is initialize with this structure. 1. the appControl parameter lets you set the application that will be launch when you click on your notification. 2. Note that you can set the icon to be used in the notification. It can be set to your logo. 3. For information, on getting and setting information in an application see the Application: Managing and Launching Applications documentation https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.web.appprogramming%2Fhtml%2Fguide%2Fapp_guide%2Fapplication.htm // Application control var appControl = new tizen.ApplicationControl("http://tizen.org/appcontrol/operation/create_content", null, "image/jpg", null, null); var notificationDict = { // Notification content content: "This is a simple notification.", // Path to the notification icon iconPath: "images/image1.jpg", // Path to the sound file to be played when the notification is displayed soundPath: "music/Over the horizon.mp3", // Device vibrates when the notification is displayed vibration: true, // Application control to be launched when the user selects the notification appControl: appControl };