美文网首页
解决webView加载http请求图片不展示问题

解决webView加载http请求图片不展示问题

作者: Dapengyou | 来源:发表于2022-10-10 17:56 被阅读0次

    通过调用setMixedContentMode api 解决webView加载http请求图片不展示问题

    WebView  webview = findViewById(R.id.webview);
    WebSettings webViewSettings = webView.getSettings();
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
     webViewSettings.setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW);
    }
    
    <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout 
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        xmlns:app="http://schemas.android.com/apk/res-auto">
    
        <WebView
            android:id="@+id/webView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintBottom_toBottomOf="parent">
        </WebView>
    </android.support.constraint.ConstraintLayout>
    

    相关文章

      网友评论

          本文标题:解决webView加载http请求图片不展示问题

          本文链接:https://www.haomeiwen.com/subject/zodzartx.html