gpt4 book ai didi

java - 为什么即使 **intent-filter** 具有标签属性,应用程序的名称仍与主要 Activity 标签的名称相同

转载 作者:行者123 更新时间:2023-11-30 00:21:17 26 4
gpt4 key购买 nike

出现在主屏幕上的应用名称与主 Activity 标签的名称相同,我向 intent-filter 添加了标签属性,但没有任何变化。

list .xml:

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

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".PhoneState.PhoneStateReceiver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
</receiver>
</application>

应用的名称仍然是@string/ringtones_activity_label

怎么了?

最佳答案

您必须更改 Activity 标签中标签的值

<activity
android:label="Your title, displayed on the home screen"

关于java - 为什么即使 **intent-filter** 具有标签属性,应用程序的名称仍与主要 Activity 标签的名称相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46218272/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com