AndroidでWebview使ってたらBasic認証が何もせずにキャンセル扱いになってた
そんなわけで解決策
・MainActivity
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super .onCreate(savedInstanceState) setContentView(R.layout.activity_main) webview.webViewClient = object : WebViewClient() { override fun onReceivedHttpAuthRequest(view: WebView?, handler: HttpAuthHandler?, host: String?, realm: String?) { handler?.proceed( "ユーザー名" , "パスワード" ) } } webview.loadUrl( "ユーアールエル" ) } } |
・activity_main
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <? xml version = "1.0" encoding = "utf-8" ?> < androidx.constraintlayout.widget.ConstraintLayout xmlns:android = "http://schemas.android.com/apk/res/android" android:layout_width = "match_parent" android:layout_height = "match_parent" tools:context = ".MainActivity" > < WebView android:id = "@+id/webview" android:layout_width = "match_parent" android:layout_height = "match_parent" app:layout_constraintBottom_toBottomOf = "parent" app:layout_constraintLeft_toLeftOf = "parent" app:layout_constraintRight_toRightOf = "parent" app:layout_constraintTop_toTopOf = "parent" /> </ androidx.constraintlayout.widget.ConstraintLayout > |
そういやアプリだとalert抑止されてたなぁと思ったので
Basic認証も同じ扱いなんですかね
ユーザにBasic認証させる必要があるならネイティブでダイアログ作る必要がありそうですね
関連記事:
- AndroidでCanvasに大きい文字を書いてみる
- androidでDataBinding + ViewModel + LiveDataを使ってみた
- ViewPager2を利用したサンプルコードを書いた