私はアンドロイドの初心者です。アンドロイドで利用可能なテキストフィールドをチェックするプロジェクトを作成しました。string.xml にいくつかのリソースを追加し、プロジェクトをビルドしました。私の R.java は自動的に生成されません。プロジェクトタブから「自動ビルド」のみを選択しました。プロジェクトを何度もクリーンアップしてEclipseを再起動しましたが、r.javaが生成されません。リソース フォルダーにエラーが見つかりません。誰でも私を助けてくれますか?また、可能であればリソース フォルダの操作方法についても教えてください。以下の私の activity.xml を参照してください。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Text_MainActivity">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<EditText
android:id="@+id/email_address"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/textView1"
android:layout_marginTop="14dp"
android:ems="10"
android:hint="@string/email_hint"
android:inputType="textEmailAddress"/>
<EditText
android:id="@+id/launch_codes"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/email_address"
android:layout_below="@+id/email_address"
android:ems="10"
android:hint="@string/enter_launch_codes"
android:imeActionLabel="@string/launch"
android:inputType="number"/>
<EditText
android:id="@+id/postal_address"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/launch_codes"
android:layout_below="@+id/launch_codes"
android:ems="10"
android:hint="@string/postal_address_hint"
android:inputType="textPostalAddress"/>
<AutoCompleteTextView
android:id="@+id/autocomplete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/postal_address"
android:layout_below="@+id/postal_address"
android:layout_marginLeft="16dp"
android:layout_marginTop="18dp"
android:ems="10"
android:hint="@string-array/countries_array">
</RelativeLayout>
前もって感謝します