전체 글210 <Kotlin 코틀린> 안드로이드 WebView(웹뷰) 갤러리 사진 registerForActivityResult으로 넘겨주기 onShowFileChooser 를 오버라이드 해주시면 되는데요! 그전에 우선 변수먼저 전역으로 잡고 갈거 선언해주고 가겠습니다. var cameraPath = "" var mWebViewImageUpload: ValueCallback? = null 이렇게 선언 잡아주시고 웹뷰이름.webChromeClient = object : WebChromeClient(){ override fun onShowFileChooser(webView: WebView?, filePathCallback: ValueCallback?, fileChooserParams: FileChooserParams?): Boolean { try{ mWebViewImageUpload = filePathCallback!! var takePictur.. 2021. 11. 10. <Kotlin 코틀린> 안드로이드 하이브리드 Alert창 처리하기 본인웹뷰이름.webChromeClient = object : WebChromeClient(){ override fun onJsAlert(view: WebView?, url: String?, message: String?, result: JsResult?): Boolean { onJsAlert(message!!, result!!) return true } override fun onJsConfirm(view: WebView?, url: String?, message: String?, result: JsResult?): Boolean { onJsConfirm(message!!, result!!) return true } } 해당 코드를 오버라이드 하셔서 onCreate에 작성해주시면 되는데요. fun onJ.. 2021. 11. 10. <Kotlin 코틀린> 안드로이드 WebView(웹뷰) window.open 새창 처리하기 (옆에 짤림 해결) 자바가 필요하신 분께서는 https://onedaycodeing.tistory.com/62 안드로이드 하이브리드앱 새창 Popup(팝업)창 띄우기 및 닫기 하이브리드 앱을 진행하면서 Webview를 통해 페이지를 띄웁니다. 진행을 하다보면 스크립트(Javascript)딴에서 window.open으로 새창(팝업)을 띄웁니다. 이걸 안드로이드(네이티브)딴에서 뒤로가기나 다 onedaycodeing.tistory.com 이쪽 게시글로 가주세요! lateinit var mContainer : FrameLayout lateinit var mWebView : WebView lateinit var mWebViewPop : WebView lateinit var mWebSettings : WebSettings 우선 이렇.. 2021. 11. 10. Xocde sceneDelegate 사용하지 않고 AppDelegate 사용 유지하기 프로젝트 생성 시 sceneDelegate가 생성되는 걸 볼 수 있습니다. 해당 sceneDelegate를 사용하려면 기존에 AppDelegate 사용을 중단하고 AppDelegate의 코드를 sceneDelegate에 맞게 다시 작성 하셔야 하는 번거로움이 생길 수 도 있습니다. 이번에는 sceneDelegate를 사용하지않고 기존 AppDelegate를 사용하는 방법. // MARK: UISceneSession Lifecycle @available(iOS 13.0, *) func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.. 2021. 11. 1. 이전 1 ··· 15 16 17 18 19 20 21 ··· 53 다음