R.id无法解决。 Android系统。

时间:2012-04-19 14:52:08

标签: android android-tabhost android-xml

我有代码:

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>

任何帮助将不胜感激,我可以从这里去哪里?

3 个答案:

答案 0 :(得分:2)

xml中的

@array.recipes应为@array/recipes 像这样的简单拼写错误会阻止您的R类构建无法找到任何ID或其他资源的含义。
您还应该确保在使用Randroid.R

时获得正确的R

答案 1 :(得分:2)

尝试清理并重建代码。我不知道为什么,但它对我有用。

答案 2 :(得分:-1)

使用此com.finalyearproject.cookmefood.R.id.recipes。