언어 설정

Menu
Sites
Language
Changing the style of app widgets

Hi All,

I am developing a Native UI app. I observed that all widgets have by default blue background(or theme).

I want to customize it without using .edj file.

Is it possible and if it is how can I achieve it?

Thank you.

Responses

3 댓글
Alex Dem

Hi, 
Regarding widget customization:
https://developer.tizen.org/dev-guide/2.3.0/org.tizen.guides/html/native/ui/widget_preferences_n.htm#customize
Alexey.

Vikram

Hi,

Currently, there isn't a easy way to customize the style of widget without edj. Hope it becomes true in furture version. :)

Jean Yang

Hi , 

You can put an icon widget as background, for example, if you use an button, the icon button can implement like below:

Evas_Object *ic;
ic = elm_icon_add(button);
elm_image_file_set(ic, "icon.png", NULL);
elm_object_part_content_set(button, "icon", ic);