Tizen Native API
4.0
|
This example will show 2 checkboxes, one with just a label and the second one with both a label and an icon. This example also illustrates how to have the checkbox change the value of a variable and how to react to those changes.
We will start with the usual setup code:
And now we create our first checkbox, set its label, tell it to change the value of value
when the checkbox stats is changed and ask to be notified of state changes:
For our second checkbox we are going to set an icon so we need to create and icon:
And for our second checkbox we set the label, icon and state to true:
We now do some more setup:
And finally implement the callback that will be called when the first checkbox's state changes. This callback will use data
to print a message:
data
is value(from the main function)
and value
is changed when the checkbox is changed.Our example will look like this: