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
Try doing requestWindowFeature(Window.FEATURE_NO_TITLE); in onCreate. It'll need to be done immediately after calling super.onCreate and just before setContentView.
requestWindowFeature(Window.FEATURE_NO_TITLE);
onCreate
super.onCreate
setContentView