DialogFragment with clear background (not dimmed)

前端 未结 4 1346
小蘑菇
小蘑菇 2020-11-30 02:01

I\'m trying to get the background of a DialogFragment to be completely clear.

With setting the style item android:windowIsFloating to true

4条回答
  •  無奈伤痛
    2020-11-30 02:39

    Even a simpler solution is to change the style in the onCreate of the DialogFragment:

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setStyle(STYLE_NO_FRAME, getTheme());
    }
    

提交回复
热议问题