I have a very strange problem with an Android manifest file.
I have something like this .....
<application android:icon="@drawable/icon" android:label="TestApplication"> <activity android:name=".Test" android:label="Test" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>
Then in this case the name of my application will be "TestApplication", which should appear in the device menu with an icon. The name of the launch activity is “Test”, which should appear in the title bar when the application starts.
But the problem is that the application shows the name “Test” as the name of the application with an icon in the menu ..... but it should show “TestApplication” since I set the name of the application.
I am so stuck that it shows the name of the launch activity as the name of the application, but I explicitly specified the name of the application .....
Please fix the problem.
thanks
Nihil
source share