How do you guys manage keyboard resizing your scre...
# android-architecture
u
How do you guys manage keyboard resizing your screen in a single activity architecture during screen transitions? Basically when one screen has a keyboard opened, then moving to next or previous, that given screen's layout will be resized for a brief second due to the keyboard Very annoying, and looks cheap
r
I always write an extension function to hide/show keyboards, View.hidekeyboard(), this way I can call it from any view. In your case, I would hide the keyboard first and then finish.
u
hiding keyboard is not blocking, it wont help
r
by hide/show I mean close and open...