1

私はコードを持っています:

package com.finalyearproject.cookmefood;

import android.app.Activity;
import android.os.Bundle;
import android.widget.ListView;
import android.widget.TextView;

public class SearchActivity extends Activity {
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);

        ListView recipes = (ListView)findViewById(R.id.recipes);
    }
}

「idを解決できません」というエラーが表示されます。

プロジェクトをクリーンアップしようとしましたが、ファイルにエラーが発生し、現在は問題ありません。

私のXMLは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="5dp">
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:padding="5dp" >
            <LinearLayout
                android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
                android:padding="5dp">
                <ListView 
                    android:id="@+id/recipes"
                    android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:entries="@array.recipes"/>
            </LinearLayout>
        </FrameLayout>
    </LinearLayout>
</TabHost>

何か助けていただければ幸いです。ここからどこに行けばいいですか?

4

3 に答える 3

2

@array.recipesxmlでは。である必要があります@array/recipes
このような単純なタイプミスは、Rクラスの構築を妨げ、IDやその他のリソースが見つからないことを意味します。また、との両方を使用している
ので、正しいものを取得することを確認する必要がありますRandroid.RR

于 2012-04-19T14:55:13.130 に答える
2

コードをクリーンアップして再構築してみてください。理由はわかりませんが、うまくいきました。

于 2012-05-26T17:08:38.260 に答える
-1

このcom.finalyearproject.cookmefood.R.id.recipesを使用してください。

于 2012-04-21T11:45:22.680 に答える