网络视图中的大型视频

时间:2018-08-03 09:50:09

标签: android-studio video webview android-webview android-websettings

我的网络视图中的视频大小非常大,我该怎么做才能缩小视频大小? WebView image

WebSettings webSettings = webView.getSettings();
        webView.setHorizontalScrollBarEnabled(false);
        webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
        webView.setScrollbarFadingEnabled(true);
        webView.getSettings().setDomStorageEnabled(true);
        webView.setVerticalScrollBarEnabled(false);

        String myCustomStyleString = "<style type=\"text/css\">@font-face {font-family: MyFont;src: url(\"file:///android_asset/fonts/iranian_sans.ttf\")}body,* {font-family: MyFont; line-height: 2.5;font-size: 13px;text-align: justify;}img{ width:100%; height:auto; border-radius :8px;}a {text-decoration: none;}</style>";
        webView.loadDataWithBaseURL("", myCustomStyleString + "<div style=\"direction:rtl\">" + intent.getStringExtra("content") + "</div>", "text/html", "utf-8", null);

0 个答案:

没有答案