当我启动模拟器时,我的app_name没有显示

时间:2016-02-07 15:41:11

标签: java android xml manifest

我的main.xml是这样的:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:background="@color/background"
        xmlns:tools="http://schemas.android.com/tools"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        tools:context="com.example.qiaoyi.tipcalculator.MainActivity">

我的Manifest看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.qiaoyi.tipcalculator">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

我之前尝试将android:label =“@ string / app_name”添加到我的清单中,但它仍然不起作用。所以我把它拿出来。我的代码有什么问题?感谢。

2 个答案:

答案 0 :(得分:0)

您的strings.xml文件是什么样的?

strings.xml文件中更新您的应用名称:

<resources>
    <string name="app_name">My super cool tool</string>
</resources>

答案 1 :(得分:0)

label中的manifest值外,您必须在 /中设置字符串 app_name 的定义res / values / strings.xml ,这样:

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