Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Textfield in WebView in an Android is hidden by the keyboard

When I touch the html textfield, the soft keyboard pops up, and hides the textfield, so that I was not able to see what I had typed.

How to add vertical scroll for scrolling hidden content?

like image 848
Dale Avatar asked Jan 09 '12 14:01

Dale


1 Answers

you have to declare soft keyboard value appropriately in AndroidManifest.xml

Here is link for reference of values need to be set

http://developer.android.com/guide/topics/manifest/activity-element.html

check "android:windowSoftInputMode" in above link

like image 89
rajpara Avatar answered Nov 07 '22 02:11

rajpara