Can't get transparent DialogFragment

后端 未结 3 682
走了就别回头了
走了就别回头了 2020-12-29 14:35

I have a dialog Fragment which look like that.

\"enter

AlertDialog ad          


        
3条回答
  •  醉酒成梦
    2020-12-29 15:04

    I hope it can help you

    @Override
    public void onStart() {
        super.onStart();
    
        Window window = getDialog().getWindow();
        WindowManager.LayoutParams windowParams = window.getAttributes();
        windowParams.dimAmount = 0.0f; 
    
        window.setAttributes(windowParams);
    }
    

提交回复
热议问题