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

android, android-listview, android-scroll

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!

Problem

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.

Original source

Related problems