This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
public Dialog onCreateDialog(final Bundle savedInstanceState) { | |
// the content | |
final RelativeLayout root = new RelativeLayout(getActivity()); | |
root.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)); | |
// creating the fullscreen dialog | |
final Dialog dialog = new Dialog(getActivity()); | |
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); |