I need keypad for EditText
its overlaps my EditText
but i need keypad below the EditText
view.
EDIT:
finally i got the answer for this. we need to set
android:imeOptions="flagNoExtractUi" in `edittext`
it hides the popup.
I need keypad for EditText
its overlaps my EditText
but i need keypad below the EditText
view.
EDIT:
finally i got the answer for this. we need to set
android:imeOptions="flagNoExtractUi" in `edittext`
it hides the popup.
All you need is set this parameter android:windowSoftInputMode="adjustPan"
in your AndroidManifest
for your Activity
class.
You will need to set android:windowSoftInputMode
or android:windowSoftInputMode
to to make room for the soft keyboard without hiding EditText
<activity android:windowSoftInputMode="adjustResize" />
or
<activity android:windowSoftInputMode="adjustPan" />