Search code examples
androidandroid-listviewandroid-scroll

How to make scroll up in list view when keyboard is appear


I would like to know that is there any way to do in android like this question. I used ListView and add the EditText in it. I got same problem as above question. I cann't find the answer in android.

Thanks.


Solution

  • In your manifest, try this

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

    What you need is android:windowSoftInputMode="adjustPan"

    Try!