Hello to all,
I am trying to create a box for put inside a label, and then set the color of the box for make it as a label background color, like a frame for the label, I tryed with the bubble table, and gived up, no any suscess, and now I am trying with a simple box:
Evas_Object *data_content = elm_box_add(table);
ad->labelGps = elm_label_add(data_content);
elm_object_text_set(ad->labelGps, "<align=center>Waiting GPS status</align>");
evas_object_size_hint_weight_set(ad->labelGps, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_size_hint_align_set(ad->labelGps, EVAS_HINT_FILL, 0.5);
elm_label_line_wrap_set(ad->labelGps, ELM_WRAP_WORD);
evas_object_color_set(data_content, 200, 170, 100, 255);
//elm_table_pack(table, ad->labelGps,0,4,4,1);
elm_table_pack(table, data_content,0,6,4,1);
//evas_object_show(data_content);
evas_object_show(ad->labelGps);
elm_box_pack_end(data_content, ad->labelGps);
But no any effect, as usually, any one can sugest any thing? Thanks to all!
(BTW , if anyone did with bubble table I would like to know, for learn it, thanks)