How to change title of Activity in Android?

前端 未结 14 1188
无人及你
无人及你 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:31
    setTitle(getResources().getText(R.string.MyTitle));
    
    0 讨论(0)
  • 2020-12-02 06:31
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.Main_Activity);
        this.setTitle("Title name");
    }
    
    0 讨论(0)
提交回复
热议问题