我刚开始尝试使用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__ */

最佳答案

This is the guide在Native平台上创建您的第一个Tizen可穿戴应用程序。在本指南中,将逐步介绍所有内容。我认为通过遵循本指南,您将能够学习Tizen Native应用程序的基础。

熟悉Tizen之后,请检查心率示例应用程序。 Here是带源代码的心率简单教程。

该应用的屏幕截图如下
c - 我可以在Tizen Native Wearable App(Samsung G3)的模板中开始在哪一行代码中输入代码-LMLPHP

您也可以在YouTube上查看有关的video tutorial

关于c - 我可以在Tizen Native Wearable App(Samsung G3)的模板中开始在哪一行代码中输入代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55584503/

10-11 16:43