From: SukHyung, Kang Date: Fri, 21 Jul 2017 09:41:58 +0000 (+0900) Subject: Add Dotnet Alarm Api guide X-Git-Tag: GitHub/PR#40/tizen-studio~96^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3efdff2834f9e9439cc3025035d83d30aeb15121;p=sdk%2Fonline-doc.git Add Dotnet Alarm Api guide PS3: Reviewed PS5: Reviewed again PS6: Fixed typo Change-Id: I4ad0e2fd1dff7f3962980665d4ddd4b57e73fe60 Signed-off-by: SukHyung, Kang --- diff --git a/org.tizen.guides/html/dotnet/alarm/alarms_cs.htm b/org.tizen.guides/html/dotnet/alarm/alarms_cs.htm new file mode 100644 index 0000000..70580d8 --- /dev/null +++ b/org.tizen.guides/html/dotnet/alarm/alarms_cs.htm @@ -0,0 +1,237 @@ + + + + + + + + + + + + + Alarms + + + + + +
+

Alarms

+ +

You can use alarms to launch applications or send user notifications at specific times. The mechanism involved in launching the application is the Tizen.Applications.AppControl class.

+

The Tizen.Applications.AppControl class allows launching an application explicitly, giving its package name, or providing certain criteria that the application must meet. For example, the criteria can include the type of data on which the application must be able to operate. The structure containing the criteria is called an application control.

+ +

The main features of the Tizen.Applications.Alarm and Tizen.Applications.AlarmManager classes include:

+ + +

Prerequisites

+

To enable your application to use the alarm functionality:

+
    +
  1. To use the Tizen.Applications.Alarm and Tizen.Applications.AlarmManager classes, the application has to request permission by adding the following privileges to the tizen-manifest.xml file: +
    +<privileges>
    +   <privilege>http://tizen.org/privilege/alarm.get</privilege>
    +   <privilege>http://tizen.org/privilege/alarm.set</privilege>
    +   <!--If an alarm is used to send a notification-->
    +   <privilege>http://tizen.org/privilege/notification</privilege>
    +</privileges>
    +
    +
  2. +
  3. To use the methods and properties of the Tizen.Applications.Alarm and Tizen.Applications.AlarmManager classes, include the Tizen.Applications namespace in your application: +
    +using Tizen.Applications;
    +
    +
  4. +
  5. To use the methods and properties of the Tizen.Applications.Notifications namespace to make an alarm send a notification, include the namespace in your application: +
    +using Tizen.Applications.Notifications;
    +
    +
  6. +
+ +

Setting an Alarm with a Specific Delay

+ +

You can set an alarm which, when it expires, either launches an application or sends a notification to the user:

+ +
    +
  • To set an alarm to launch an application: +

    You need 2 applications: the "AlarmRegister" application that sets the alarm, and the "AlarmTarget" application that is launched when the alarm expires.

    +
      +
    1. In the AlarmRegister application: +
        +
      1. To identify which application to start when the alarm expires, the Tizen.Applications.AlarmManager class needs an application control instance. +

        Create a new instance of the Tizen.Applications.AppControl class, and set the Operation and ApplicationID properties for it. The Operation property identifies the operation to be performed, and the ApplicationID property identifies the appid of the target application to be launched. You can get the appid of the target application from its tizen-manifest.xml file.

        +
        +int DELAY = 2;
        +int PERIOD = 1;
        +
        +AppControl appControl = new AppControl();
        +
        +appControl.Operation = AppControlOperations.Default;
        +appControl.ApplicationId = "org.tizen.alarmslave";
        +
        +
      2. +
      3. To schedule an alarm after a delay, use the CreateAlarm() method of the Tizen.Applications.AlarmManager class, with the initial delay, interval for subsequent alarms, and instance of the Tizen.Applications.AppControl class as parameters. +

        The method creates the alarm as a new instance of the Tizen.Applications.Alarm class.

        +
        +Alarm myAlarm = AlarmManager.CreateAlarm(DELAY, PERIOD, appControl);
        +
        +
      4. +
      +
    2. + +
    3. When the alarm expires, it triggers the OnAppControlReceived() event handler in the AlarmTarget application: +
      +protected override void OnAppControlReceived(AppControlReceivedEventArgs e)
      +{
      +    base.OnAppControlReceived(e);
      +}
      +
      +
  • + +
  • To set an alarm to send a notification to the user: +
      +
    1. Create a notification to be sent to the user as an instance of the Tizen.Applications.Notifications.Notification class: +
      +int DELAY = 2;
      +int PERIOD = 1;
      +Notification myNoti;
      +
      +myNoti = new Notification
      +{
      +    Title = "Notification",
      +    Content = "Hello Tizen"
      +};
      +
      +
    2. +
    3. To schedule an alarm after a delay, use the CreateAlarm() method of the Tizen.Applications.AlarmManager class, with the initial delay, interval for subsequent alarms, and instance of the Tizen.Applications.Notifications.Notification class as parameters. +

      The method creates the alarm as a new instance of the Tizen.Applications.Alarm class.

      + +
      +Alarm myAlarm = AlarmManager.CreateAlarm(DELAY, PERIOD, myNoti);
      +
      +
    4. +
  • +
+ +

Setting an Alarm for a Specific Date

+ +

To schedule an alarm for a specific date, use the CreateAlarm() method of the Tizen.Applications.AlarmManager class with an instance of the DateTime structure as its first parameter.

+

The following example schedules an application control to trigger 20 seconds after the current time (using the AddSecond() method of the DateTime structure):

+
+DateTime dt = AlarmManager.GetCurrentTime();
+
+myAlarm = AlarmManager.CreateAlarm(dt.AddSeconds(20), appControl);
+
+ + +

Setting a Recurring Alarm for a Specific Day of the Week

+ +

You can set a recurring alarm that goes off at a specific moment, and thereafter at regular intervals.

+

To schedule a recurring alarm to go off on specific days of the week, use the CreateAlarm() method of the Tizen.Applications.AlarmManager class, with values of the Tizen.Applications.AlarmWeekFlag enumeration as the second parameter. You can join multiple values together to set the alarm to trigger on multiple days of the week.

+

The following example schedules an application control to be invoked at a set time every Tuesday and Friday:

+ +
+Tizen.Applications.AppControl appControl = new Tizen.Applications.AppControl();
+appControl.Operation = AppControlOperations.Default;
+appControl.ApplicationId = "org.tizen.alarmslave"
+
+Alarm myAlarm = AlarmManager.CreateAlarm(DateTime.New.AddSecond(10),
+                                         AlarmWeekFlag.Tuesday | AlarmWeekFlag.Friday, appControl);
+
+ +

Listing All Scheduled Alarms and Canceling an Alarm

+ +

You can list all scheduled alarms, and cancel alarms either one by one or all at once:

+
    +
  • To list all scheduled alarms, use the GetAllScheduledAlarms() method of the Tizen.Applications.AlarmManager class: +
    +List<Alarm> alarms;
    +
    +alarms = (List<Alarm>)AlarmManager.GetAllScheduledAlarms();
    +
    +
  • +
  • To cancel a single scheduled alarm, use the Cancel() method of the Tizen.Applications.Alarm class: + +
    +Tizen.Applications.AppControl appControl = new Tizen.Applications.AppControl();
    +Alarm myAlarm;
    +
    +appControl.Operation = AppControlOperations.Default;
    +appControl.ApplicationId = "org.tizen.alarmslave";
    +myAlarm = AlarmManager.CreateAlarm(100, appControl);
    +
    +try
    +{
    +    myAlarm.Cancel();
    +}
    +catch (Exception e)
    +{
    +    Log.Error("ALARM", "Exception occurs");
    +}
    +
    +
  • +
  • To cancel all alarms registered by the application, use the CancelAll() method of the Tizen.Applications.AlarmManager class: +
    +AlarmManager.CancelAll();
    +
    +
  • +
+ + + +
+ +Go to top + + + + + + +