我正在尝试在模拟器中运行SDK示例Watch Face,但我得到一些神秘的消息:
<select id="form_filter" class="form-control"
ng-model="template"
ng-options="t.name for t in templates" <!-- why did t.name as t for t in templates fail? -->
ng-change="Opencv()">
</select>
$scope.Opencv = function(){
alert("HI");
if ($scope.template === 'MakeGray')
alert("MAKEGRAY");
}
}
我几天来一直在谷歌挖掘没有成功,包括Tizen开发者网站。
答案 0 :(得分:3)
这不是错误消息。 由于手表应用程序是一种小部件应用程序,您需要使用设置菜单设置手表的外观。 tizen sdk只是将手表应用程序安装到模拟器上,并且可以通过watchface设置触发真正的启动。