为什么浏览应用程序屏幕上没有显示正确的应用程序名称?

时间:2014-12-14 06:51:57

标签: android performance android-layout background textview

我正在使用Android Studio 1.0。这是我的清单文件

<application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:icon="@drawable/ic_launcher"
        android:theme="@style/AppTheme"
        >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category    android:name="android.intent.category.LAUNCHER" />
           </intent-filter>
        </activity>
    </application> 
And inside strings.xml
<string name="app_name">Demo app</string>

我想关注的属性是android:label 从http://developer.android.com/guide/topics/manifest/application-element.html,我读到应用程序的android:标签是&#34;整个应用程序的用户可读标签&#34;。现在,我假设,这是用户在浏览应用程序时应该看到的名称。但是,当我在我的模拟GenyMotion 4.4.4 Nexus设备上安装应用程序时,这就是我所看到的 enter image description here

为什么标签显示的是MainActivity,而不是我指定的应用标签/名称?根据我的阅读,这应该是用于设置标签名称的正确属性。

1 个答案:

答案 0 :(得分:1)

它是intent-filter,用于描述哪些活动在应用程序托盘中具有启动器图标,因此它是您在活动上指定的标签,用于确定它在那里的显示方式。应用程序的标签将包命名为一个整体,而不是获取启动器图标的特定入口点。