I am completely new to Tizen development. And I need to develop an Tizen wearable native application which shows 3 text views(1. for current step count, 2. speed, 3. for distance) as soon as I get values from the sensors I need to assign these values to text views. Currently I am able to get values from sensors using:
function onchangedCB(pedometerdata) {
tizen.humanactivitymonitor.getHumanActivityData("PEDOMETER", onsuccessCB, onerrorCB);
}
tizen.humanactivitymonitor.start("PEDOMETER", onchangedCB);
But stuck at UI part. I tried finding samples from Tizen but couldn't find it. Also I tried reading their documentation but Not able to design simple UI.