我的网络视图中的视频大小非常大,我该怎么做才能缩小视频大小? 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);