我在AndroidManifest.xml
中設置了下面的代碼:
<uses-sdk android:minSdkVersion="7"></uses-sdk>
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:theme="@android:style/Theme.Light">
<activity android:name=".FormularActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
在 8 & 11行得到了以下的錯誤:
no resource found that matches the given name(at "label" with value "@string/app_name")
no resource found that matches the given name(at "label" with value "@string/app_name")
我沒有移動文件夾值。為什麼會有給定的名稱沒有匹配的資源這樣的錯誤呢?
檢查res/values/strings.xml
中是否定義了字符串資源。
<string name="app_name">"My App"</string>
有時候,如果一些.xml
文件有錯,eclipse 也難以追蹤也會拋出錯誤。