Languages

Menu
Sites
Language
The native application window shrinks when keyboard pops up

In my native application whenever the focus is on any of the entry field the keyboard will popup and immediately the window will shrink, this will make all the widgets on the window to shrink and makes it diffcult to access buttons and entry fields. I'm using UI builder for creating the UI.

Responses

1 Replies
Jin Yoon

I want to know what the components you use.

If you have elm_conformant_add(),

then I think it's normal.

 

elm_conformant helps your app's region shrink according to the size of the keyboard.

If the keyboard overlays your app's region not shrinks,

then an user cannot see or select the hidden region.

 

If you don't want to shrink your region,

then just remove elm_conformant.

 

Simple routines-

1. elm_win_add()

2. elm_layout_add()

3. elm_win_resize_object_add(win, layout)

 

 

Best regards, Jin.