我正在开发Android应用程序并刚刚添加了启动画面,因为我将在启动时从SQLite加载...
在告诉AndroidManifest我想将我的Splash活动作为我的启动器之后,它似乎改变了我的应用程序下载的名称。
该应用程序现在名为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>
答案 0 :(得分:8)
Android正在使用启动器活动的标签名称,因此请将其更改为您的应用名称
更改
<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>
....
这将解决您的问题
答案 1 :(得分:2)
告诉AndroidManifest我想要我的Splash 活动作为我的发射器,它似乎改变了我的名字 应用程序下载。
BCOZ
如果您有[标签名称]&amp;的“启动器活动” “应用程序标签”也使用不同的[标签名称],然后Android将从Launcher活动中获取[标签名称]。 有关详细信息,请参阅此android documentation。
答案 2 :(得分:0)
应用程序名称在Android Manifest文件中设置,请检查项目应用程序和属性android:label。
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
...
</application>