List of usage examples for android.app DialogFragment STYLE_NO_FRAME
int STYLE_NO_FRAME
To view the source code for android.app DialogFragment STYLE_NO_FRAME.
Click Source Link
From source file:es.esy.vivekrajendran.news.dialogs.DevDialog.java
@Override public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { super.onViewCreated(view, savedInstanceState); getDialog().requestWindowFeature(Window.FEATURE_NO_TITLE); if (getDialog().getWindow() != null) { Log.i("TAG", "onViewCreated: "); getDialog().getWindow().setBackgroundDrawableResource(R.drawable.frame); }// w ww . j av a 2 s. co m setStyle(DialogFragment.STYLE_NO_FRAME, android.R.style.Theme); }