In my project when application is get installed it naming the app name as {@string/welcome_msg} not {@string/app_name}. Is there any way to make the application name not same as Main Activity label?

Below is my manifest code:-

<application android:theme="@style/AppTheme" android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".StartActivity" android:label="@string/welcome_msg">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity android:name=".LoginActivity" android:label="@string/login">
            <intent-filter>
                <action android:name="com.gymup.project.LOGINACTIVITY" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
</application>
link|improve this question

80% accept rate
pardon my ignorance, but why does it matter? – Ian Nov 12 '11 at 22:05
Hi Ian, actually when my app starts I need to show a splash screen ,which is working great but before showing a splash screen application is showing title bar (Main activity label {@string/welcome_msg}) for a while. I just want to stop this title bar. If you have seen yahoo mail then when we click on icon it shows splash screen without any title and notification bar. I have written removal code of title bar and notification bar in onCreate method of activity. – AvMishra Nov 12 '11 at 22:23
feedback

2 Answers

Change the label in your manifest to the app's name, then in your code use

this.setTitle( R.string.lable );

on onCreate(..)

link|improve this answer
Actually my Main activity is splash screen(in code i removed title and notification). when I am removing android:label(android:label="@string/welcome_msg") from Main activity it solved my problem but application is stilling showing title (application's label android:label="@string/app_name") for a while. – AvMishra Nov 12 '11 at 20:39
Ah right, I'm not too sure – Joe Simpson Nov 14 '11 at 18:10
feedback

You're avoiding the real question here:

How to get ride of title bar?

Answer:

In activity entry of manifest: android:theme="@android:style/Theme.NoTitleBar"

link|improve this answer
I tried but still didn't work <activity android:name=".StartActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" android:theme="@android:style/Theme.NoTitleBar" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> – AvMishra Nov 12 '11 at 22:51
Theme.NoActionBar? What platform are you testing? – Ian Nov 12 '11 at 23:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.