程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-給定的名稱沒有匹配的資源

android-給定的名稱沒有匹配的資源

編輯:編程綜合問答
給定的名稱沒有匹配的資源

我在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 也難以追蹤也會拋出錯誤。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved