How to change title of Activity in Android?

前端 未结 14 1263
无人及你
无人及你 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:28

    I have a Toolbar in my Activity and a Base Activity that overrides all Titles. So I had to use setTitle in onResume() in the Activity like so:

    @Override
      protected void onResume() {
        super.onResume();
        toolbar.setTitle(R.string.title);
      }
    

提交回复
热议问题