Eclipse を使用していますが、R.java
ファイルが生成されません。他の議論から、これは間違ったレイアウト コンテンツによる問題である可能性があることを理解しています。これが、SDK によって生成された私のレイアウト ファイルです。エラーの内容がわかりません。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/first_android_app" />
</RelativeLayout>