android - How to change the app name which is placed in the launcher screen -
i want change app name. not every where. in launcher screen of android.
not inside app or in installation screen.
is possible?
your manifest.xml file should similar this:
<application .... <activity android:name=".activities.splashscreenactivity" android:label="mylabel" android:screenorientation="portrait" android:theme="@style/splashtheme"> .... .... as can see every activity node can has label attribute. changing changes activity label (not on application)
Comments
Post a Comment