I wish to reach this goal with Tizen5.5 (or 4.0):
A nice circular genlist, with 2 buttons on top, then a groupindex then items.
More specifically:
- Padding
- Icons
- Groupindex
- Items...
- Padding
I'm fully aware of 1,3,4 and 5, but can't find a way to implement 2:
No matter which item style I choose, my Icons are always seems highlighted, which I want to avoid, as they are buttons.
Currently I'm adding these icons with content:
auto itc = elm_genlist_item_class_new();
itc->item_style = "full";
itc->func.content_get = getListItem;
Evas_Object* getListItem(void* data, Evas_Object* obj, const char* part) {
Evas_Object* item = elm_layout_add(obj);
elm_layout_file_set(...);
evas_object_show(item);
return item;
}
Layout:
parts {
image { "elm.icon.create";
mouse_events: 0;
desc { "default";
image.normal: "ic_create.png";
rel2.relative: 0.5 1;
}
}
image { "elm.icon.settings";
mouse_events: 0;
desc { "default";
image.normal: "ic_settings.png";
rel1.relative: 0.5 0;
}
}
}
I haven't find any useful sources online, just some design specs: https://developer.samsung.com/one-ui-watch-tizen/ui-components/buttons.html#Design-specs