找不到与给定名称匹配的资源(在'label'处,值为'@ string / app_name')

时间:2017-03-17 05:09:33

标签: android label android-resources

<?xml version="1.0" encoding="utf-8"?>
<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="com.kun.www.love.MainActivity">
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/party"
        android:scaleType="centerCrop"/>
    <TextView
        android:text="Happy Birthday, Kun"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@android:color/white"
        android:textSize="36sp"
        android:fontFamily="san-serif-light"
        android:layout_marginTop="20dp"
        android:layout_marginLeft="20dp"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/Love"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:textColor="@android:color/white"
        android:textSize="36sp"
        android:fontFamily="san-serif-light"
        android:layout_marginBottom="20dp"
        android:layout_marginRight="20dp"/>
</RelativeLayout>


<resources>
    <string
        name="Love"
        >From Kun</string>
</resources>

这是错误。我试着解决它,但我失败了。 我是初学者,我真的需要你的帮助。 非常感谢你。

enter image description here enter image description here

3 个答案:

答案 0 :(得分:0)

签入文件 res / values / strings.xml 是否包含app_name?如果不加

 <string name="app_name">"Your App name"</string>

答案 1 :(得分:0)

在您的清单文件中添加以下行

中的应用标记
    android:label="@string/app_name"

并在行

下添加string.xml文件
<string name="app_name">App Name</string>

答案 2 :(得分:0)

保存在res/values/strings.xml的XML文件:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string
        name="Love"
        >From Kun</string>
</resources>

也有这个

<string name="app_name">"My App"</string>