找不到与给定名称匹配的资源,即使它不应该在那里

时间:2013-05-21 18:30:41

标签: android

所以这是我的activity.xml,它显示了一个错误

No resource found that matches the given name (at 'text' with value '@string/hello_world').

我的activity.xml

中没有@ string / hello_world
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical" >

    <LinearLayout 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="horizontal" >

        <Button 
            android:id="@+id/press_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/press_button"
        />
    </LinearLayout>

</LinearLayout>

这是我的Strings.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">GpsLocater</string>
    <string name="action_settings">Settings</string>
    <string name="press_button">Press Button</string>

</resources>

当你创建一个活动时,它会自动将hello world放入字符串和活动中,但我摆脱了它,这次错误是什么?

2 个答案:

答案 0 :(得分:0)

清除项目,重新启动IDE。

答案 1 :(得分:0)

删除项目中gen目录中的R.java。它应该重新创建R.java。那应该没问题。