1

I have an EditText and a WebView in a layout(xml). The WebView is at the bottom of the screen.

When I touch the EditText, the keyboard push up the webview to the upper part of the keyboard, and as result it covers the EditText.

I want maintain the webview at the bottom of my screen, displayed or not displayed the keyboard.

Excuse my English, Im not American.

Xenetrix
  • 339
  • 2
  • 19
  • maybe [this](http://stackoverflow.com/questions/1109022/close-hide-the-android-soft-keyboard) will help: – boburShox Aug 07 '13 at 05:46

2 Answers2

3

Try to use the android:windowSoftInputMode="stateHidden|adjustPan in AndroidManifest.xml for your activity. Hope it helps

user2652394
  • 1,686
  • 1
  • 13
  • 15
0

put this in your menifes in your activity tag

android:windowSoftInputMode="stateHidden|adjustPan"

Done

farrukh
  • 627
  • 4
  • 16