だれかが私の main.xml コードをすぐに調べて、ばかげた間違いをしていないことを確認できますか? これは何も表示されていません。古い main.xml を表示しています。保存してEclipseを再起動しましたが、新しいコードが表示されません。コードを実行するたびに、コードにエラーがあることがわかります。ただし、エラーは表示されず、2 回目の実行では古いバージョンが実行されます。
<?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 を呼び出しています。ただし、新しい変更 (ロゴ画像、ボタン テキスト、背景色) は表示されません。