Android: Change custom AlertDialog background

后端 未结 3 588
清酒与你
清酒与你 2021-01-07 00:13

dialog layout xml:




        
3条回答
  •  感情败类
    2021-01-07 01:01

    I had the same problem, I managed to fix it using a custom dialog like this:

    public class CustomDialog extends Dialog {
        public CustomDialog(Context context, View view) {
            super(context);
            requestWindowFeature(Window.FEATURE_NO_TITLE);
            setContentView(view);
            getWindow().getDecorView().setBackgroundResource(android.R.color.transparent);
        }
    }
    

提交回复
热议问题