0

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.

APriya
  • 1,994
  • 1
  • 16
  • 21
Poovizhirajan N
  • 1,263
  • 1
  • 13
  • 29

2 Answers2

0

All you need is set this parameter android:windowSoftInputMode="adjustPan" in your AndroidManifest for your Activity class.

Evos
  • 3,915
  • 2
  • 18
  • 21
  • do u have any examples for pls send me!! – Poovizhirajan N Dec 04 '12 at 11:04
  • Oh i'm absolutelly forgot one thing - if your `EditText` located in `ScrollView` this wouldn't help, and unfortunately i don't know how to handle it in this situation. Your `EditText` is in `ScrollView`? – Evos Dec 04 '12 at 11:10
0

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" />
ρяσѕρєя K
  • 132,198
  • 53
  • 198
  • 213