static int _popup_progressbar_type_create(view_data *view)
{
int res;
Evas_Object *popup = _popup_new_with_align(view->navi, NULL, view, 0.5);
elm_object_part_text_set(popup, "title,text", POPUP_TEXT_TITLE_STORAGE);
res = _popup_progressbar_add(popup,0.3,"XXX","YYYY");
res = _popup_button_add(popup, "button1", POPUP_BTN_OK, _popup_cancel_cb, popup);
if (res != RESULT_TYPE_OK)
{
ERR("Fail to create button");
evas_object_del(popup);
return RESULT_TYPE_FAIL;
}
return RESULT_TYPE_OK;
}
The configuration of progress bar I took from example app (UI controls app) I want to have in popup same progress bar as in example the second progress bar (with percentage and LeftBottom and RightTop text) this kind of progress bar has no style in example. How to achieve that? Not only raw progress bar but with additional elements?
Progressbar with percentage, TopRight and BottomLeft text in Popup
I try to develop app which shows popup with progress bar inside the popup. So I made function like below:
the above fuction I use in below way:
The configuration of progress bar I took from example app (UI controls app) I want to have in popup same progress bar as in example the second progress bar (with percentage and LeftBottom and RightTop text) this kind of progress bar has no style in example. How to achieve that? Not only raw progress bar but with additional elements?
BY
16 Apr 2025
Tizen Studio
BY
04 Nov 2024
Tizen Studio
BY
02 Apr 2024
Tizen Studio