티스토리 뷰
반응형
오늘 포스팅할내용은 WebChormClient에 onCreateWindow 가 왜 call될때가
있고 안될때가 있는지 대해서 알아보는 시간을 가질텐데요
아주 간단해요
그냥 자세한 설명 없이 그냥그냥 할께요
저의 경우는 문제점이 을 몰라서 계속 해서 안드로이드만 건드리는거였는데요
알고보니 web 에서 만져야되더라구요 저는
@Override
public boolean onCreateWindow(WebView view, boolean isDialog, boolean isUserGesture, Message resultMsg){//웹뷰 추가되는부분
final WebView newWebView = new WebView(view.getContext());
//WebView newWebView = new WebView(MainActivity.mContext);
configurateWebView(newWebView);
newWebView.setTag("subWebView");
newWebView.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
MainActivity.customViewContainer.setVisibility(View.VISIBLE);
linParent.addView(newWebView);
MainActivity.customViewContainer.addView(linParent); // 화면에 보여질 수 있도록 add viewWebView.WebViewTransport transport = (WebView.WebViewTransport) resultMsg.obj;
transport.setWebView(newWebView);
resultMsg.sendToTarget();return true;
}
그리고 WebSetting 할떄
webSettings.setJavaScriptCanOpenWindowsAutomatically(true);
webSettings.setSupportMultipleWindows(true);
요렇게 셋팅값을 줬어요
움..그리고 MainActivity.customViewContainer 이부분이 Main RelativeLayout 에 추가 되는 부분이에요
리고고 웹에서 window.open or location.href=''로 해서 값을 줘야만 onCreate를 타더군요
혹시나 못하신분은 참고해보셔요~~~
그럼이만
반응형
'android' 카테고리의 다른 글
[Kotlin] Parameter specified as non-null is null: method kotlin.jvm.internal.Intrinsics.checkParameterIsNotNull, parameter intent (1) | 2017.12.15 |
---|---|
[android] hybride web에서 webview 자동로그인 (0) | 2017.11.13 |
[android] retrofit 사용방법 (1) | 2017.08.17 |
[android] PagerAdapter에 대해서 (FragmentPagerAdapter와 FragmentStatePagerAdapter) (0) | 2017.08.17 |
[android] webview scrollbar not visiable (0) | 2017.07.05 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Swift textField max length
- Sandbox account sign out
- Swift button text underline
- Swift version code
- Swift 노치 구분
- swift autoclosure
- SceneDelegate error
- Sandbox account logout
- Bundle main infodictionary swift 4
- Swift check notch
- [WindowScene] Failed to instantiate the default view controller for UIMainStoryboardFile 'Main' - perhaps the designated entry point is not set?
- 위메프
- [WindowScene] Failed to Error
- 쇼미더머니6
- autoclosure
- Swift app version check
- android notification
- 맛집
- iPhone X safe area size
- swift actor
- 샤브샤브
- Swift button underline programmatically
- Swift 앱 버전
- How to get version swift
- Swift label underline storyboard
- wwdc21 actor
- swift uitextfield 글자수 제한
- firebase remote config
- Sandbox test login on
- Android
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함