我正在尝试将HTML文件实现到WebView中。问题是,未显示包括HTML文件引用的背景图像的图像。 但仅限于模拟器。 backgroundimage在浏览器中运行良好。
我把它全部缩减为最小代码,但它仍然不起作用。背景颜色效果很好,但所有背景图像都不可见:
HTML文件Test.html:
<html>
<head>
</head>
<body background="ipad_bg.jpg" bgcolor="#5611cc">
Test
</body>
</html>
的活动:
package my.Package;
/*imports...*/
public class Ueber extends Activity {
WebView mWebView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.ueber_layout);
mWebView = (WebView) findViewById(R.id.ueber_webview);
mWebView.getSettings().setJavaScriptEnabled(true);
try {
InputStream fin = getAssets().open("Test.html");
byte[] buffer = new byte[fin.available()];
fin.read(buffer);
fin.close();
mWebView.loadData(new String(buffer), "text/html", "UTF-8");
} catch (IOException e) {
e.printStackTrace();
}
}
}
ueber_layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ueber_webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
Test.html文件位于assets-folder中,图像也是ipad_bg.jpg。 因此,显示颜色,但不显示图像。
有人有想法吗?
答案 0 :(得分:1)
尝试打开您的网页:
mWebView.loadUrl("file:///android_asset/Test.html");
我的html页面中也有图像,它对我来说很好。