Why is this needed?
I have run into some issues due to "adjustPan" (like rows covering the system status bar and random focus issues with soft keyboards) and would like to use the "adjustResize" option but when I try it, the keyboard just flashes up and down and I can't enter anything.
Is there a special reason why we must use "adjustPan"?
In your README you have this: Attention! If you use EditText based form elements, make sure you set "windowSoftInputMode" to "adjustPan"
Do it in your manifest:
<activity android:windowSoftInputMode="adjustPan"/> Or programmatically in the onCreate method of your activity
@Override protected void onCreate(Bundle savedInstanceState) {
}
Why is this needed? I have run into some issues due to "adjustPan" (like rows covering the system status bar and random focus issues with soft keyboards) and would like to use the "adjustResize" option but when I try it, the keyboard just flashes up and down and I can't enter anything.
Is there a special reason why we must use "adjustPan"?