作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在开发一个 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/
概述 CentOS Stream 成立于 2019 年,是“RHEL 下一步的滚动预览”。Red Hat 首席技术官 Chris Wright 和 CentOS 社区经理 Rich Bowen 各
我有一个使用 Mesosphere DC/OS 编排选项进行配置的 Azure 容器服务 (ACS) 集群。我可以在 Marathon UI 中创建一个应用程序。 但是,当我通过 Marathon U
我是一名优秀的程序员,十分优秀!