No Title Bar Android Theme

前端 未结 7 2127
孤街浪徒
孤街浪徒 2020-12-30 04:18

In my application I want to use the Theme.NoTitleBar, but on the other hand I also don\'t want to loose the internal Theme of the Android OS.. I searched on the net and Foun

7条回答
  •  盖世英雄少女心
    2020-12-30 05:10

    if you want the original style of your Ui to remain and the title bar to be removed with no effect on that, you have to remove the title bar in your activity rather than the manifest. leave the original theme style that you had in the manifest and in each activity that you want no title bar use this.requestWindowFeature(Window.FEATURE_NO_TITLE); in the oncreate() method before setcontentview() like this:

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        this.requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_signup);
        ...
    }
    

提交回复
热议问题