Questions tagged [tizen-native-app]

Tizen is an open and flexible operating system built from the ground up to address the needs of all stakeholders of the mobile and connected device ecosystem, including device manufacturers, mobile operators, application developers and independent software vendors (ISVs).

Tizen is developed by a community of developers, under open source governance, and is open to all members who wish to participate.

The Tizen operating system comes in multiple profiles to serve different industry requirements. The current Tizen profiles are Tizen IVI (in-vehicle infotainment), Tizen Mobile, Tizen TV, and Tizen Wearable. In addition to that, as of Tizen 3.0, all profiles are built on top of a common, shared infrastructure called Tizen Common.

With Tizen, a device manufacturer can begin with one of these profiles and modify it to serve their own needs, or use the Tizen Common base to develop a new profile to meet the memory, processing and power requirements of any device and quickly bring it to market.

Mobile operators can work with device partners to customize the operating system and user experience to meet the needs of specific customer segments or demographics.

For application developers and ISVs, Tizen offers the power of native application development with the flexibility of unparalleled HTML5 support. Tizen also offers the potential for application developers to extend their reach to new “smart devices” running Tizen, including wearables, consumer electronics (TVs, gaming consoles, DVRs, etc.), cars and appliances.

The Tizen project resides within the Linux Foundation and is governed by a Technical Steering Group. The Technical Steering Group is the primary decision-making body for the open source project, with a focus on platform development and delivery, along with the formation of working groups to support device verticals.

The Tizen Association has been formed to guide the industry role of Tizen, including gathering of requirements, identification and facilitation of service models, and overall industry marketing and education.


Learn More

To learn more about Tizen, we invite you to read these whitepapers, and then get involved!


Source: https://www.tizen.org/about

Tizen Developers Page: https://developer.tizen.org/

280 questions
0
votes
1 answer

Why am i getting constant step count in Tizen Native Wearable?

I'm running step count listener in Tizen Wearable using Native. I'm able to access the sensor data however it seems to print the same data forever? Am I doing something wrong here? Using API 3 and Samsung Galaxy Watch 3. #include…
0
votes
1 answer

How to display SVG?

I have a simple SVG and want to display it with EDC: This is just as simple: My EDC: collections { group { name:…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

Customizing 1text item in genlist - and receive highlighted signal

On the Tizen OS, there is a nice genlist style 1text. It creates a "magnifier" effect on the list, ie: top and bottom items are smaller then the one in the middle: And they are smoothly coming larger as user moves them into the middle. I wanted to…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

How to build a table?

This might sound non-rational, but I want to build a table on Tizen Wearable (for my watch). It still has Tizen 4.0 version, so I'm interested in a solution which is capable running on that OS. I have looked at gengrid:…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

How to print heart rate and stepcount data from the watch in Tizen Native?

I want to fetch the step count and heart rate data from my Samsung Galaxy Watch 3 into a variable in Tizen Native. I have gone through the documentation and was able to find a sample code for reading the sensor data. So far i could read the…
0
votes
1 answer

Howto override or add genlist item style?

I want to override genlist item style with my own: group { "elm/genlist/item/1text/default"; data { item: "texts" "elm.text"; } rect { "elm.clipper"; scale: 0; desc { "default"; color: 249 0 249 255; min: 360 120; max:…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
2 answers

Speed up scrolling of genlist item?

I have a native genlist with item style of 1text. This style is capable of scrolling when the text is longer than the display, but how can I control the speed? I want it to scroll faster. Thanks.
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

Using the same font as genlist uses

In Tizen, there is a genlist component, which uses 1text as listitem class. I want to use the same font style and size as this genlist uses in my label component. How can I achieve this? I have…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

Double click event doesn't work in Tizen wearable? Why?

I've been trying to get double click to work but for some reason only single click event works. Am I missing some kind of a library or a parameter? typedef struct appdata { Evas_Object *win; Evas_Object *conform; Evas_Object *button; }…
0
votes
1 answer

Change transition from linear to decelerate in EDC script

In EDC, I can use scripts in collections/group to make animation: group { "my_group"; script { public my_anim(val, Float:pos) { set_tween_state(PART:"elm.text", pos, "state_begin", 0.0, "state_end", 0.0); } public…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

Vertical centering of two text parts

I have a basic layout in EDC: group { "sample"; parts { text { "text0"; desc { "default"; rel1.relative: 0 0; rel2.relative: 1 0.5; color: 255 0 0 255; text { text: "Title"; …
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

Drawing a straight line

On a Galaxy Watch there is an app (Samsung Health), which provides information about you. These information are separated by a straight horizontal line, and I had no luck finding out how to draw this kind of separator. This might be my fault, but…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

Howto change text's style with EDC?

I want to change a programmatically created label's style with EDC: style { name: "list_text_title_normal"; base: "font=Tizen:style=Bold font_size=32 color=#FF9100FF text_class=tizen ellipsis=1.0"; } I tried to include my EDJ with this…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

Scroller "scroll,drag,start" event's parameters

In Tizen 4.0, I'm using a scroller which provides multiple events when it's being scrolled, or dragged. There is this event: "scroll,drag,start", and its callback: static void scrollDragStart(void* data, Evas_Object* obj, void *event_info) { } My…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

Tizen 4: Why is a box container not able to hold another layout?

I create a box container on Tizen 4.0: Evas_Object* box = elm_box_add(naviframe); evas_object_size_hint_weight_set(box, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(box, EVAS_HINT_FILL,…
Daniel
  • 2,318
  • 2
  • 22
  • 53