我整天在谷歌上搜索这个错误,并用 SO 中提供的各种答案修复了所有 XML,但问题仍然存在。
我正在Mac机器上开发eclipse,代码如下
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="35dp"
android:layout_marginTop="16dp"
android:text="@string/Add Idea"
/>
</RelativeLayout>
字符串.XML
<resources>
<string name="app_name">Idea Tracker</string>
<string name="hello_world">Hello world!</string>
<string name="menu_settings">Settings</string>
<string name="button1">Add Idea</string>
</resources>
虽然我在 Strings.xml 文件中添加了所需的代码,但无法弄清楚问题为何仍然存在。