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: バイナリXML ファイルの 6 行目: クラス html の拡張中にエラーが発生しました
私が知る限り、これはWebView Documentationに示されているサンプル ファイルと事実上同じです。どんな助けでも大歓迎です。