我知道这可能是由拼写和语法错误引起的,我已经仔细检查了这部分代码。我的主要工作是将图像“外星人”放在画布上的特定位置。错误来自此代码
<?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>