Android soft keyboard covers EditText field

Alexis picture Alexis · Jul 21, 2010 · Viewed 182.4k times · Source

Is there a way to make the screen scroll to allow the text field to be seen?

Answer

Kuldeep Sakhiya picture Kuldeep Sakhiya · Feb 14, 2014

I had same issues. Try following code:

android:windowSoftInputMode="adjustPan"

add it to your manifest.xml in the activity tag of the activity that holds the input. example:

<activity
            android:name=".Activities.InputsActivity"
            ...
            android:windowSoftInputMode="adjustPan"
            />