Android activity as dialog, but without a title bar

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

Leave a Comment