0

すみません、単純なAndroid電卓をエンコードすると、XMLが間違って表示されます。コードを変更しましたが、機能しません。なぜこのようなのですか?

これがメインコードです

<LinearLayout xmlsn:android ="http://schemas.android.com/apk/res/android"
xmlns:tools ="http://schemas.android.com/tools"
android:orientation="vertical"
android:layou_width="fill_parent"
android:layou_height="fill_parent"
android:paddingTop="5dip">
<TextView
android:id="@+id/tv"
android:layout_width="fill_parent"
android:layout_height="40dip"
android:layout_marginLeft="5dip"
andorid:layout_marginRight="5dip"
android:background="#FFFFFF"
android:gravity="center_verticallright"
android:textColor="#ff0000"
android:textSize="30dip">
</TextView>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="5dip">

次に、エラー警告が表示されます:

エラー警告

それは言う


この行に複数の注釈が見つかりました:

  • エラー:XMLの解析エラー:整形式ではありません(無効なトークン)

  • 要素タイプ「LinearLayout」の後には、属性指定「>」または「/>」のいずれかを続ける必要があります。

ありがとう

4

3 に答える 3

0

私はあなたのテキストビューにクロージングがないと思います>。</textview>追加のすぐ上に>

あなたの写真は実際にそれを見るには小さすぎるので、多分あなたはあなたのコードをアップロードするべきです

于 2012-08-31T07:27:27.047 に答える
0

上手。LinearLayoutよろしいですか、タグを閉じましたか?編集者がタグを見つけることができません</LinearLayout>

おそらく、レイアウトファイルの一番下にあるはずです。

于 2012-08-31T07:32:13.530 に答える
0

入れてみてください

   </LinearLayout>
</LinearLayout>

の終わりにxml

皮むきが正しくない 、幅と同じであってはならandroid:layout_heightないandroid:layou_height

結果は次のようになります

<LinearLayout xmlns:tools="http://schemas.android.com/tools"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    android:orientation="vertical"
    android:paddingTop="5dip"
    xmlsn:android="http://schemas.android.com/apk/res/android" >

    <TextView
        android:id="@+id/tv"
        android:layout_width="fill_parent"
        android:layout_height="40dip"
        andorid:layout_marginRight="5dip"
        android:layout_marginLeft="5dip"
        android:background="#FFFFFF"
        android:gravity="center_verticallright"
        android:textColor="#ff0000"
        android:textSize="30dip" >
    </TextView>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingTop="5dip" >
    </LinearLayout>

</LinearLayout>
于 2012-08-31T08:06:31.450 に答える