2

私はアンドロイドの初心者です。アンドロイドで利用可能なテキストフィールドをチェックするプロジェクトを作成しました。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>

前もって感謝します

4

2 に答える 2

1

これは以前に何度も尋ねられており、おそらく重複した質問です。

ただし、ここでも、プロジェクトのクリーンアップと再構築を試みることができます。問題が解決しない場合は、res/ フォルダーを調べます。おそらく、XML ファイルの 1 つが壊れていることを示す赤い X アイコンが表示されます。その XML を修正すると、動作する可能性があります。

ちなみに、xml のAutoCompleteTextViewタグを閉じていないようです

于 2013-05-20T09:42:50.413 に答える
0

プロジェクトをビルドする前に、Android プロジェクトを右クリックし、-> Android ツール ---> プロジェクトのプロパティを修正します。これが完了したら、プロジェクトを右クリックして ---> プロジェクトをビルドします

問題が解決する場合があります。

于 2013-07-29T11:01:00.147 に答える