I have an android app with two actions. In AndroidManifest , I have the following:
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="false"> <activity android:name=".MyCellTracker" android:label="@string/activity1_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".DisplaySuccess" android:label="@string/activity2_name"></activity>
The actions are correctly named, but the application uses the project name, not android:label (@ string / app_name), which I gave it. If I go to uninstall the application, I see that it is called using android:label . Why is this name displayed under the icon on the program launch bar without using android:label in the node application?
android
nickfox
source share