I try to understand the GUI creation in native Tizen app. Now I can add label and button. But I cannot find any solution how to add text edit (android TextEdit).
The button I add by below code:
ad->button = elm_button_add(ad->box1);
evas_object_smart_callback_add(ad->button, "clicked", btn_clicked_cb, ad);
evas_object_size_hint_weight_set(button, EVAS_HINT_EXPAND, 0.1);
evas_object_size_hint_align_set(button, EVAS_HINT_FILL, EVAS_HINT_FILL);
elm_object_text_set(ad->button, "Preform");
evas_object_show(ad->button);
elm_box_pack_end(ad->box1, ad->button);
so I try to search elm_edit_text_add function but with no result.