Issue: webview is going blank upon double tapping on password field of html page on Android Tablet. Just typing user name and password on the html page has no problem.
Tested on: Samsung Galaxy tablet (GT-P7510) and Motorola Xoom
layout file snippet:
<LinearLayout
android:layout_width="@dimen/layout_xlarge_width"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="20dip"
android:orientation="vertical">
<TextView
android:id="@+id/urlview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/test"
/>
<Spinner
android:id="@+id/profile"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
/>
</LinearLayout>
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="gone"
/>
</LinearLayout>
Code to setup webview:
webView = (WebView) findViewById(R.id.webview);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
webView.clearCache(true);
webView.setScrollBarStyle(View.SCROLLBARS_OUTSIDE_OVERLAY);
setUserAgent(getString(R.string.user_agent_suffix));
Other:
Adding support for zoom on webview or setting up touch and focus listener did not help.
Thank you!