Search code examples
androidandroid-activity

How to change title of Activity in Android?


I am using

Window w = getWindow();
w.setTitle("My title");

to change title of my current Activity but it does not seem to work.

Can anyone guide me on how to change this?


Solution

  • Try setTitle by itself, like this:

    setTitle("Hello StackOverflow");