0

これは、スペルや文法の誤りが原因である可能性があることを理解しており、コードのこの部分を再確認しました。私の主な目的は、キャンバス上の特定の位置に「エイリアン」というイメージを配置することです。エラーはこのコードから来ています

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/spaceinvaders"
    >

<ImageView
android:id="@+id/alien"
android:src="@drawable/alien"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
andriod:layout_marginTop="120dip"/>


</LinearLayout>
4

1 に答える 1

1

最後の行が原因だと思います。

アンドロイド:layout_marginTop="120dip"/>

于 2012-04-26T19:13:08.130 に答える