我刚刚开始尝试使用Tizen Studio制作Samsung G3应用程序。我对使用C进行编码非常陌生。在Tizen Studio提供的模板中,我不确定应该在哪里开始编码/编写自己的代码。 例如,如果我想通过创建此传感器开始:
sensor_type_e type = SENSOR_HRM;
sensor_h sensor;
bool supported;
int error = sensor_is_supported(type, &supported);
if (error != SENSOR_ERROR_NONE) {
dlog_print(DLOG_ERROR, LOG_TAG, "sensor_is_supported error: %d", error);
return;
}
if(supported){
dlog_print(DLOG_DEBUG, LOG_TAG, "HRM is%s supported", supported ? "" : "
not");
sprintf(out,"HRM is%s supported", supported ? "" : " not");
elm_object_text_set(event_label, out);
}
在提供给我的这个简短模板中,我将放在哪里?
#ifndef __basicui_H__
#define __basicui_H__
#include <app.h>
#include <Elementary.h>
#include <system_settings.h>
#include <efl_extension.h>
#include <dlog.h>
#include <sensor.h>
#ifdef LOG_TAG
#undef LOG_TAG
#endif
#define LOG_TAG "basicui"
#if !defined(PACKAGE)
#define PACKAGE "org.example.basicui"
#endif
#endif /* __basicui_H__ */
答案 0 :(得分:0)
This is the guide在Native平台上创建您的第一个Tizen可穿戴应用程序。在本指南中,将逐步介绍所有内容。我认为通过遵循本指南,您将能够学习Tizen Native应用程序的基础。
熟悉Tizen之后,请检查心率示例应用程序。 Here是带有源代码的心率简单教程。
您也可以在YouTube上查看此video tutorial有关Tizen本机应用程序基础知识的信息。