Android Soft Keyboard Covers Edittext Field

Android soft keyboard covers EditText field

Are you asking how to control what is visible when the soft keyboard opens? You might want to play with the windowSoftInputMode. See developer docs for more discussion.

Soft keyboard hides half of EditText

Solution was to set an android:softInputMode attribute to adjustResize in Manifest and put layout(not list item layout) inside a ScrollView.

Why the android keyboard cover my EditText?

You might need to use windowSoftInputMode attribute in your activity in the manifest. Somelike this:

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

Check those links:
Android soft keyboard covers edittext field

http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html



Related Topics



Leave a reply



Submit