Android activity as dialog, but without a title bar

后端 未结 9 1817
暗喜
暗喜 2020-12-02 21:59

I have an activity that has the following set as theme:

android:theme=\"@android:style/Theme.Dialog\"

However, there is a title bar in the

9条回答
  •  庸人自扰
    2020-12-02 22:34

    Try doing requestWindowFeature(Window.FEATURE_NO_TITLE); in onCreate. It'll need to be done immediately after calling super.onCreate and just before setContentView.

提交回复
热议问题