hoss24
hoss24

Reputation: 556

Is it possible to define name of app inside activity?

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

Answers (1)

Mike
Mike

Reputation: 1000

You can use:

getActionBar().setTitle("My new title");

Inside your Activity.

Upvotes: 3

Related Questions