How to change title of Activity in Android?

前端 未结 14 1240
无人及你
无人及你 2020-12-02 05:30

I am using

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

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

14条回答
  •  遥遥无期
    2020-12-02 06:17

    There's a faster way, just use

    YourActivity.setTitle("New Title");
    

    You can also find it inside the onCreate() with this, for example:

    public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
            this.setTitle("My Title");
        }
    

    By the way, what you simply cannot do is call setTitle() in a static way without passing any Activity object.

提交回复
热议问题