我正在创建一个对话框并设置内容视图。但是,我的内容视图被黑色背景色包围。当我尝试将主题设置为半透明或将背景可绘制设置为透明时,对话框变为全屏!
有什么建议我可以将对话框设置为透明而不是全屏吗?非常感谢
diag = new Dialog(mActivity);
//diag.getWindow().setBackgroundDrawable(new ColorDrawable(0)); --> I tried that
//diag.getWindow().setBackgroundDrawableResource(android.R.color.transparent); -->I tried that too
diag.requestWindowFeature(Window.FEATURE_NO_TITLE);
diag.setContentView(R.layout.scoredialog);