如何更改上传的应用程序的名称

时间:2016-11-08 13:15:50

标签: android

我已经在谷歌游戏商店推出了一个Android应用程序,它目前正在运行。然而,该应用程序没有名称。在商店本身,它有一个名称,但一旦你下载它,它就消失了。就像所有其他应用旁边的图标一样,但小图标下没有名称。

有谁知道我可以在哪里添加这个?我在AndroidManifest中看到了一些关于android:标签的东西,但是当我改变它时我会遇到错误。它目前是android:label="@string/app_name"

这是我的整个AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.informatie.rodekruis"
    android:versionCode="2"
    android:versionName="1.1" >

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

    <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        android:icon="@mipmap/app_logo" >
        <activity
            android:name="com.example.rodekruis.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>
        <activity
            android:name="com.example.rodekruis.BezoekActivity"
            android:label="@string/title_activity_bezoek" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.BEZOEKACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.AfspraakActivity"
            android:label="@string/title_activity_afspraak" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.AFSPRAAKACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.ContactActivity"
            android:label="@string/title_activity_contact" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.CONTACTACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.MeningActivity"
            android:label="@string/title_activity_mening" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.MENINGACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.RouteActivity"
            android:label="@string/title_activity_route" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.ROUTEACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.SpecialistenActivity"
            android:label="@string/title_activity_specialisten" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.SPECIALISTENACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.BWCActivity"
            android:label="@string/title_activity_bwc" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.BWCACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.AgendaActivity"
            android:label="@string/title_activity_agenda" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.AGENDAACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.InfoActivity"
            android:label="@string/title_activity_informatie" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.INFOACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.VriendActivity"
            android:label="@string/title_activity_vriend" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.VRIENDACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.FoldersActivity"
            android:label="@string/title_activity_folders" >
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.FOLDERSACTIVITY" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.example.rodekruis.NieuwsActivity"
            android:label="@string/title_activity_nieuws">
            <intent-filter>
                <action android:name="android.intent.category.DEFAULT" />

                <category android:name="com.example.rodekruis.NIEUWSACTIVITY" />
            </intent-filter>
        </activity>
    </application>

</manifest>

1 个答案:

答案 0 :(得分:0)

Android正在使用application的标签,而不是activity标记中的标签,而

<intent-filter>
 <action android:name="android.intent.action.MAIN" />
 <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

在里面。 Android试图成为最具体的。因为,正如你所说,你的字符串资源的价值

@string/title_activity_main

是空的(基本上是一个空字符串,这不是空值)你没有在图标下方看到任何标签。如果您在设置中打开应用程序管理器并搜索您的应用程序,则可以对此进行检查。它应以您的app_name资源命名。<​​/ p>

您现在可以更改活动标签的值,或者改为(我认为这是您想要做的),删除<activity ... />之间的标签。