How to change title of Activity in Android?

前端 未结 14 1229
无人及你
无人及你 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条回答
  •  -上瘾入骨i
    2020-12-02 06:11

    If you're using onCreateOptionsMenu, you can also add setTitle code in onCreateOptionsMenu.

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.menu, menu);
    
        setTitle("Neue Aktivität");
        return true;
    }
    

提交回复
热议问题