kannappan
kannappan

Reputation: 2250

How can I dynamically change title bar title in the android application?

I want to change the title in the title bar dynamically.

How do I do this?

Upvotes: 0

Views: 1971

Answers (2)

M. E.
M. E.

Reputation: 11

In order to change the title in the title bar dynamically you should use :

setTitle("your string");

Upvotes: 1

Salil
Salil

Reputation: 536

Use setTitle(title string ); to change the text of the title bar.

Upvotes: 4

Related Questions