gpt4 book ai didi

android - 添加了启动画面 - 更改了应用程序名称

转载 作者:太空狗 更新时间:2023-10-29 15:41:46 25 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序并且刚刚添加了启动画面,因为我将在启动时从 SQLite 加载...

在告诉 AndroidManifest 我想将我的 Splash Activity 作为我的 LAUNCHER 之后,它似乎更改了我的应用程序下载时使用的名称。

该应用程序现在称为 Splash,以前有人遇到过这个问题吗?

<?xml version="1.0" encoding="utf-8"?>

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="18" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.codedaykcrunningapp.MainActivity"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.example.codedaykcrunningapp.Workout"
android:label="@string/title_activity_workout" >
</activity>

<receiver
android:name="com.example.codedaykcrunningapp.Widget"
android:label="@string/app_name" >
</receiver>

<activity
android:name="com.example.codedaykcrunningapp.Splash"
android:label="@string/title_activity_splash"
android:theme="@android:style/Theme.Black.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

最佳答案

Android 正在使用您的启动器 Activity 的标签名称,因此请将其更改为您的应用名称

改变

<activity
android:name="com.example.codedaykcrunningapp.Splash"
android:label="@string/title_activity_splash"
android:theme="@android:style/Theme.Black.NoTitleBar" >
<intent-filter>
....

<activity
android:name="com.example.codedaykcrunningapp.Splash"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar" >
<intent-filter>
....

这会解决你的问题

关于android - 添加了启动画面 - 更改了应用程序名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21808806/

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