jsp로 웹쪽 하고 안드로이드 webview로 띄워주고 있는데요.
jsp 페이지중에
<script>
url="http://127.0.0.1:8080/webserver/ker.jsp?url="+document.location;
window.open(url,"","width=500,height=200");
</script>
이런 스크립트를 가진 페이지가 있는데 pc로 접속하면 새 윈도우 잘 띄워주거든요 저 url로
그런데 안드로이드는 못 띄워주네요...
WebSettings set=mWebView.getSettings();
set.setJavaScriptEnabled(true);
set.setJavaScriptCanOpenWindowsAutomatically(true);
set.setSupportMultipleWindows(true);
이런거 다 추가해줬는데...
어떻게 해야하나요?
음... ie에서는 되는데 크롬에서는 안되네요...
제가 표준에 못 따른 부분이 있나요?
크롬에서 안되는거 해결했습니다... pc는 다 되는데 안드로이드 webview에서 window.open이 안되네요...