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
  • 43
  • 9

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,048
  • 6
  • 49
  • 84