您可以使用加载Web视图的内容
// add a webview with id @+id/the_webwiev to your main.xml layout file WebView wv = (WebView)findViewById(R.id.the_webview); wv.loadUrl("file:///android_asset/myweb.html");
嗯,您是否尝试从官方网页上关注WebView示例?这很简单.
http://developer.android.com/resources/tutorials/views/hello-webview.html
我遵循了这一点,并且没有实现WebView的麻烦.对于非常简单的事情,您的代码看起来过于复杂.
如果您的文件名为pmi_help.html(位于/ assets /文件夹中),则使用以下命令加载:
mWebView.loadUrl("file:///android_asset/pmi_help.html");