Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change App Name in Android Studio

guy's there is a problem with android studio.I make a splash screen in Manifest then I run the app in emulator the app name is splash.see the screnshot. ScreenShot1

Screenshot

<resources>
    <string name="app_name">Times Table</string>
    <string name="action_settings">Settings</string>
    <string name="title_activity_splash">Splash</string>
</resources>

need help.

like image 450
Mahfuz Ahmed likhon Avatar asked Jan 05 '16 11:01

Mahfuz Ahmed likhon


2 Answers

go to your values/strings.xml and change this

<string name="app_name">Splash</string>

to

<string name="app_name">YourName</string>
like image 116
Drilon Blakqori Avatar answered Nov 03 '22 16:11

Drilon Blakqori


You need to check 2 things here

  1. Your Android Mainifest show have something like this

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
    

and navigate to Strings under Values, ensure you find this line inside your code

<string name="app_name">Your App Name HERE</string>

So the String you are referencing to is "app_name"

like image 22
ianmanda Avatar answered Nov 03 '22 16:11

ianmanda