0

所以这是我的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 放入字符串和活动中,但我摆脱了它,那么这次的错误是什么?

4

2 回答 2

0

清除您的项目,重新启动 IDE。

于 2013-05-21T18:31:59.380 回答
0

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

于 2013-05-21T18:34:46.547 回答