Languages

Menu
Sites
Language
Quick panel does not work if scroll down at the top.

how to configure the Quick panel should be displayed if scroll down at the top,when my app run it on device

Responses

2 Replies
Alex Ashirov

Hi,

If I understand your question correctly then you need to use conformant container in order to make Indicator visible:

https://developer.tizen.org/dev-guide/2.3.0/org.tizen.mobile.native.appprogramming/html/guide/ui/container_conformant.htm

       /* Conformant */

       ad->conform = elm_conformant_add(ad->win);

       elm_win_indicator_mode_set(ad->win, ELM_WIN_INDICATOR_SHOW);

       elm_win_indicator_opacity_set(ad->win, ELM_WIN_INDICATOR_OPAQUE);

       evas_object_size_hint_weight_set(ad->conform, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);

       elm_win_resize_object_add(ad->win, ad->conform);

       evas_object_show(ad->conform);

       Evas_Object *vbox;

       vbox = elm_box_add(ad->conform);

       elm_object_content_set(ad->conform, vbox);

.........................

ezhilarasan b
hi, now its works fine thank you.