Androidアプリ開発でのXMLのエラーに関しての質問です
現在XMLファイルとJavaファイルを編集しています.
XMLでのエラー処理ができません.
エラーの場所は一行目の
<?xml version="1.0" encoding="utf-8"?>
です.
エラー表示として,
この行で見つかった複数の注釈:
- "[xX][mM][lL]" と一致する処理命令ターゲットは使
用できません。
- エラー: Error parsing XML: junk after
document element
また,以下にコードを記載します.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/layout_root" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical">
<TabHost
android:id="@+id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fillparent"
android:layout_height="fillparent"
android:orientation="vertical">
<TabWidget
android:layout_width="fillparent"
android:layout_height="wrap_content"
android:id="@android:id/tabs"></TabWidget>
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/tabcontent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/contentlayout1">
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
</LinearLayout>