android R 已经困扰了我很长一段时间了。我在我的很多项目中都看到过,有时它们会消失,有时我不得不重新创建一个项目,等等。但这并不能解决我当前项目的任何问题。
从逻辑上讲,我怀疑 XML 文件包含错误,但我找不到它。
我使用 Eclipse 作为我的开发环境,这是我的main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imgLogo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/title"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/title"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button
android:id="@+id/btnNewTime"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/overview" />
<Button
android:id="@+id/btnOverview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/overview" />
<Button
android:id="@+id/btnValues"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/values" />
<Button
android:id="@+id/btnExit"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/exit" />
</LinearLayout>
这是我的strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Werkregistratie</string>
<string name="title">Werkregistratie</string>
<string name="overview">Overzicht</string>
<string name="values">Salaris/reiskosten aanpassen</string>
<string name="exit">Afsluiten</string>
</resources>
我无法找到问题,所以我真的希望你能帮助我。