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.recipes在 xml 中应该是@array/recipes.
像这样一个简单的错字会阻止您的R课程构建,这意味着您找不到任何 id 或其他资源。
您还应该确保在R同时使用android.R和您的R

于 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 回答