1

私はこれがたくさん尋ねられることを知っていますが、ドキュメント要素の問題の後にxmlジャンクを解析するときにエラーが発生し、問題を探している間に10rを定義できないエラーが発生しました。すべて最初のエラーが原因だと思います。しかし、問題のある段落を削除して[クリーン]をクリックしても、エラーの赤いxが空白の領域に残っています。エラーは、下部のテキストビュー行から始まりました。

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="25dp" >

<EditText
    android:id="@+id/etCommands"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:hint="Type a Command"
    android:password="true" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:weightSum="100" >

<Button
    android:id="@+id/bResults"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="20"
    android:text="Try Command" />

<ToggleButton
    android:id="@+id/tbPassword"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_weight="80"
    android:checked="true"
    android:paddingBottom="10dp"
    android:text="ToggleButton" />
</LinearLayout>


<TextView
 android:text="invalid"
 android:id="@+id/tvResults"
 android:gravity="center"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"  />   
</LinearLayout>
4

2 に答える 2

0
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100" />

する必要があります

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100" >

/タグの末尾にno があることに注意してください。/最後は「今すぐこのタグを閉じてください」のxmlです。現状では、LinearLayout の 2 つの開いたタグを持つ無効な xml がありますが、LinearLayout を 3 回閉じています。

于 2012-11-26T21:35:35.717 に答える
0

xml完全なファイルを提供しないと、何が問題なのかを知るのは困難です。アイテムの 1 つを閉じるのを忘れた可能性がありますLinearLayout

編集:

宣言/から文字を削除するだけです。LinearLayout

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100" >
于 2012-11-26T21:37:03.440 に答える