gpt4 book ai didi

android - 找不到与给定名称匹配的资源

转载 作者:IT老高 更新时间:2023-10-28 21:55:44 31 4
gpt4 key购买 nike

这个:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.androidbuch.rechner"
android:versionCode="1"
android:versionName="1.0">

<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>

是我的 AndroidManifest.xml 并且在第 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 也会抛出难以跟踪的错误。我不认为解析器恢复得很好,有时你得到的错误可能会产生误导。

关于android - 找不到与给定名称匹配的资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4736523/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com