Hello guys,
Here is my code
mLayout = elm_genlist_add(parent);
evas_object_show(mLayout);
Elm_Genlist_Item_Class *itc2 = elm_genlist_item_class_new();
itc2->item_style = "full";
itc2->func.text_get = NULL;
itc2->func.content_get = gl_content_get;
itc2->func.state_get = NULL;
itc2->func.del = NULL;
then i am setting data and etc
gl_content_get generates an evas_object box wih buttons, labels and etc.
so when i run my program my genlist items dont expand to display data form "gl_content_get" correctly.
how can i increase genlist item height, so that my returned evas_object from gl_content_get displayed correctly?