웹뷰에서 웹 페이지를 띄우고 페이지에 있는 입력란에 입력을 하면 페이지가 없어짐니다..


말 그래도 입력하는 부분을 빼고 하얗게 변하게 됩니다 ;;;;;;


기본 웹브라우저로 하면 이런 현상이 없구요


폰을 눕혀서 사용해도 위와 같은 현상이 없는 상황입니다.



이거 어떻게 해결 방법이 없을까요;;;


webViewChromClient = new WebChromeClient() {


public boolean onJsAlert(WebView view, String url, String message,

final android.webkit.JsResult result) {

new AlertDialog.Builder(MainActivity.this)

.setTitle("알림")

.setMessage(message)

.setPositiveButton(android.R.string.ok,

new AlertDialog.OnClickListener() {

public void onClick(DialogInterface dialog,int which) {

result.confirm();

}

}).setCancelable(false).create().show();

return true;

};

};


mWebClient = new WebClient();

webView.getSettings().setSavePassword(false);

webView.getSettings().setSaveFormData(true);

webView.getSettings().setJavaScriptEnabled(true);

webView.getSettings().setBuiltInZoomControls(true);

webView.getSettings().setAllowFileAccess(true);

webView.destroyDrawingCache();


webView.setWebViewClient(mWebClient);

webView.setWebChromeClient(webViewChromClient);

webView.setVerticalScrollBarEnabled(false);

webView.setHorizontalScrollBarEnabled(false);


딱히 준 옵션이라고는 이거 밖에 없네요...