我已经阅读了很多关于如何使这项工作的描述,但它并没有在我的模拟器中,这真的令人沮丧。应该是小菜一碟!
我制作了一个超级简单的html文件:
<html>
<head>
<h1> Hello </h1>
</head>
<body>
</body>
</html>
然后我使用这个java代码来实现它:
package com.path.path;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class hello extends Activity {
WebView webView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.hello);
String url = "file:///assets/hello.html";
webView = (WebView) this.findViewById(R.id.char_view);
webView.loadUrl(url);
}
}
当我在模拟器中加载此页面时,它表示该页面不可用。我错过了什么?
谢谢!
答案 0 :(得分:19)
将file:///assets/hello.html
更改为file:///android_asset/hello.html
。这假设您的HTML文件位于项目中的assets/hello.html
。
另外,将<h1>
元素移到<body>
,这样它才能真正起作用。