如何从 Android 的对话框中删除黑色背景。图片显示了问题。
final Dialog dialog = new Dialog(Screen1.this); dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); dialog.setContentView(R.layout.themechanger);
添加此代码
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
或者这个:
dialog.getWindow().setBackgroundDrawableResource(android.R.color.transparent);