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 trialdanielplaisimnd
6,837 PointsApp 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
qasimalbaqali
17,839 PointsIn 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
danielplaisimnd
6,837 PointsThanks. i will try it