I\'m displaying a DialogFragment. I implemented it with no problems, until I decided to remove the title using getDialog().getWindow().requestFeature(Wind
DialogFragment
getDialog().getWindow().requestFeature(Wind
Set style in your onCreate(), this helps me to have not shrunk dialog without title.
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setStyle(DialogFragment.STYLE_NO_TITLE, android.R.style.Theme_Holo_Light_Dialog_NoActionBar_MinWidth); }