设备上的应用程序图标下缺少应用程序标题

Bla*_*025 1 icons android android-manifest

我已经安装了Android应用程序,我正在使用我的ASUS平板电脑,运行4.0.3

但是,我必须在Manifest.xml中意外删除了某些内容,因为应用程序图标下方没有任何字词.换句话说,应用程序名称不会出现在我的设备上的应用程序图标下方,因此,它会在"所有应用程序"屏幕中排在错误的位置.

以下是我的清单的相关部分:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="tra.games.mytaboo"
    android:versionCode="1"
    android:versionName="1.2.1" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="Taboo"
    android:theme="@style/AppTheme" >
.....
Run Code Online (Sandbox Code Playgroud)

我错过了什么?

Yau*_*dav 6

Tim,将显示您的启动器活动的标签.

<activity 
    android:label="Taboo" 
    android:icon="@drawable/icon"
    android:name=".activity.LaunchrActivity">
    <intent-filter>
        <action android:name="android.intent.action.MAIN"></action>
        <category android:name="android.intent.category.LAUNCHER"></category>
    </intent-filter> 
</activity>
Run Code Online (Sandbox Code Playgroud)

http://developer.android.com/guide/topics/manifest/activity-element.html#label