I have a simple text entry field. When I click on it soft keyboard appears and it occupies the most of the screen, blocking the entry field. So I can not see what input I'm typing. What can I do to make it visible along with soft keyboard or at least show the word that is being typed?
Code:
tab = elm_table_add(win);
evas_object_size_hint_weight_set(tab , EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
elm_win_resize_object_add(win, tab);
Evas_Object *entry;
entry = elm_entry_add(tab);
elm_entry_entry_set(entry, "test");
//EXPAND THE ENTRY.
evas_object_size_hint_weight_set(entry, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_show(entry);
elm_table_pack(tab, entry, 1, 0, 1, 1);
How to move entry along with the soft keyboard?