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