我试图在 WebView 对象中显示 HTML,当我调用
setContentView(R.layout.help);
我得到一个 InflateException。这是 help.xml 的全部内容:
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/webViewHelp">
</WebView>
我收到以下错误消息:
12-31 12:46:04.398: E/AndroidRuntime(18684): java.lang.RuntimeException: 无法启动活动 ComponentInfo{com.lomda.ong2/com.lomda.ong2.ShowHelp}: android.view.InflateException: Binary XML 文件第 6 行:膨胀类 html 时出错
据我所知,这实际上与WebView 文档中显示的示例文件相同。任何帮助将不胜感激。