How to change the background color around a DialogFragment?

前端 未结 8 1853
时光取名叫无心
时光取名叫无心 2020-11-29 01:59

I\'m building a custom DialogFragment. The dialog layout is set to my_dialog.xml, but how can I modify the color around the dialog (the transparent

8条回答
  •  不知归路
    2020-11-29 02:26

    Overriding onCreate and setting the style there should work.

    @Override
    public void onCreate(Bundle savedInstance){
        super.onCreate(savedInstance);
        setStyle(DialogFragment.STYLE_NO_FRAME, android.R.style.Theme_Translucent);
    }
    

提交回复
热议问题