1

I have ListView with EditText in each row. My problem is when i click on the EditText then adjustPan is working (i mean EditText is above to softkeyboard), But when i start enter alphabets then EditText is Hiding with Keyboard.

Pls Help me... Thanks a lot

Delan
  • 53
  • 11

1 Answers1

0

Try this in manifest file:

      <activity 
              android:name=".MyEditTextInListView"
              android:label="@string/app_name"
              android:windowSoftInputMode="adjustPan" >

in Your activity which hold listview.

Lavekush Agrawal
  • 6,040
  • 7
  • 52
  • 85