有人可以快速查看我的 main.xml 代码并确保我没有犯任何愚蠢的错误吗?它没有显示任何这些。它正在显示旧的 main.xml。我保存了它,重新启动了 Eclipse,但它不会显示新代码。每当我运行代码时,它都会告诉我我的代码中有错误。但它不显示错误,并且在第二次运行时运行旧版本。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Main"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/PixLogo" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="50dp"
android:layout_marginLeft="30dp"
android:text="Take Photo" />
</RelativeLayout>
我正在调用 ImageView 和 Button onCreate。但它不会显示新的更改(徽标图像、按钮文本、背景颜色)