Hi all, I run my programm on efl-1.21.1\src\examples\elementary, the entry field can show up successfully, but no virtual keyboard shown when the entry has a focus .
Below are my entry field codes, Please comments. Thanks. static Eina_Bool _create_entry_field(void) { s_info.entry = elm_entry_add(s_info.win); if (!s_info.entry) { DBG( "elm_entry_add() failed."); return EINA_FALSE; } evas_object_size_hint_weight_set(s_info.entry, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(s_info.entry, EVAS_HINT_FILL, EVAS_HINT_FILL); elm_entry_scrollable_set(s_info.entry, EINA_TRUE); elm_object_part_content_set(s_info.main_layout, PART_PANEL_BOTTOM, s_info.entry); elm_entry_input_panel_layout_set(s_info.entry, ELM_INPUT_PANEL_LAYOUT_NORMAL); elm_entry_input_panel_enabled_set(s_info.entry, EINA_TRUE); return EINA_TRUE; } _______________________________________________ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel