我在WebView
中加載a .jpg
。我的問題是,我發現這個:Android WebView, Scaling Image to fit the screenAndroid中的Webview圖像適合屏幕
它不適合我。
這裏是我的代碼:
Display display = getWindowManager().getDefaultDisplay();
int width= display.getWidth();
Toast.makeText(getApplicationContext(), ""+width, Toast.LENGTH_LONG).show();
String html = "<html><head><title>Example</title><meta name=\"viewport\"\"content=\"width="+width+", initial-scale=0.65 \" /></head>";
html+= "<body><img width=\""+width+"\"<img src=\""+"image.jpg"+"\" /></body></html>";
aboutText.loadDataWithBaseURL("file:///android_res/drawable/", html, "text/html","UTF-8" , null);
你試過我的回答嗎? –
這是正確的解決方案:http://stackoverflow.com/a/23656581/550393 – 2cupsOfTech