Reputation: 556
I want to know if its possible to change my app name within my MainActivity.java? I want the top title bar to have a changing score during different actions throughout the app.
Upvotes: 0
Views: 49
Reputation: 1000
You can use:
getActionBar().setTitle("My new title");
Inside your Activity
.
Upvotes: 3