Textbox gone hide under keyboard in my webview Android app

时间:2017-08-05 11:48:27

标签: android xml webview

This is my androidmanifest.xml activity code:

android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
        android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen">
        <intent-filter >

2 个答案:

答案 0 :(得分:0)

Use below code in all activity tag in MeniFest file

<activity android:label="@string/app_name" 
 android:hardwareAccelerated="true" 
 android:name="com.apnabanaras.ShowWebView"   
 android:windowSoftInputMode="adjustPan|adjustResize"
 android:theme="@android:style/Theme.Holo.NoActionBar.Fullscr‌​een"/>

and remove this line

android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"

答案 1 :(得分:0)

test this attribute:

<activity
 android:label="@string/app_name"
 android:hardwareAccelerated="true"
 android:windowSoftInputMode="adjustResize"
 android:name="com.apnabanaras.ShowWebView" 
 android:theme="@android:style/Theme.Holo.NoActionBar.Fullscr‌​‌​een">