Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Self-Destructing Message Android App Adding Users Using Parse.com What is an API? What Does it Mean to Use One?

App name: how to keep the app name the same in the Actionbar for each activity.

I would like to know how to keep the Ribbit name or the app name the same for each activity to appear in the Actionbar instead of LoginActivity and SignUpActivity name. i want to replace them with Ribbit. how can i do that please.

2 Answers

In your AndroidManifest.xml file under the

<application tag

you will see

android:label="@string/app_name".

Either change it from there or go to your strings.xml and change

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

to whatever you like. The best way is to change it in strings.xml rather than the AndroidManifest

Thanks. i will try it