Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change an Android app's name?

Is there a way to change the name (Launcher App Label) of an app without creating a new project?

Note: Name of the App and The label shown on the Launcher Icon on Home Screen on Mobiles can be different.

Example: On the home page in my Mobile where my apps are, I have an icon and the name Foo, but I want to change the name to Bar. Can I do this?

like image 855
au789 Avatar asked Mar 26 '11 15:03

au789


People also ask

Can you rename an app icon on Android?

When you install an app on an Android device, a shortcut for the app is created with a default name and added to your home screen. The Android system does not allow you to change the name of your shortcuts.

Can you rename an app Android studio?

Usually, when you change the project name, you wanna change the name of your app too. Go to the res folder > values > strings. xml and change the app_name to your new name. Done!


1 Answers

Yes you can. By changing the android:label field in your application node in AndroidManifest.xml.

Note: If you have added a Splash Screen and added

 <activity     android:name=".SplashActivity"     android:label="@string/title_activity_splash_screen"     android:theme="@style/AppTheme">     <intent-filter>         <action android:name="android.intent.action.MAIN" />         <action android:name="android.intent.action.VIEW" />         <category android:name="android.intent.category.LAUNCHER" />     </intent-filter> </activity> 

to your Splash Screen, then the Launcher Icon name will be changed to the name of your Splash Screen Class name.

Please make sure that you change label:

android:label="@string/title_activity_splash_screen" 

in your Splash Screen activity in your strings.xml file. It can be found in Res -> Values -> strings.xml

See more here.

like image 82
MByD Avatar answered Oct 08 '22 05:10

MByD