0

I have a problem which want to solve :(

*As you can see in this picture, I have a application with name is "DemoName" on launcher screen.

*After that I open "DemoName" application, When I hold Home button then Current app running list appear. With my app and title is "DemoName" https://imagizer.imageshack.us/v2/480x854q90/537/Tu6aKq.png

So, my question is how to change name of my application on Current app running screen. I want it difference from name on Launcher screen.

My resull which I want is

https://imagizer.imageshack.us/v2/600x400q90/674/v4ukoq.png

Can you help me? Thanks in advanced!!

Sorry i can't upload image because of my reputation score is 6 :) and sorry about my English. I come from Vietnamese :)

Robomini
  • 11
  • 3
  • see http://stackoverflow.com/questions/3488664/android-launcher-label-vs-activity-title too – Marco Acierno Jul 31 '14 at 17:35
  • @MarcoAcierno My boss is expaned the problems. :( He is want to change label on **Recent app screen**. Application has 2 activity. If we in Activity A and hold home button, label on **Recent apps screen** is activity A. In activity A, we tap on button to go to activity B, then we hold home button. Label on **Recent apps screen** must be "Activity B" . How to do this? Thank you!! – Robomini Aug 01 '14 at 14:55

3 Answers3

0

The NAME of your app is a string held in the STRINGS.XML file. You can also override this in the ANDROIDMANIFEST.XML file.

durbnpoisn
  • 4,666
  • 2
  • 16
  • 30
0

in your project structure, under res.. look for values folder right there you will a see a xml file named Strings

enter image description here

<string name="app_name">Quality App</string>

edit

also you can change the name in the manifest file and put a different name in each activity...

geekCode
  • 336
  • 2
  • 11
0

Add into res/values/strings.xml the app name

<string name="app_name">My App is cool!</string>

call it inside your Manifest.xml to be displayed by your Activity

<activity        
   android:label="@string/app_name" >
Jorgesys
  • 124,308
  • 23
  • 334
  • 268