1

在我的应用程序中,我在对话框中显示图像。如果用户按下按钮,则会出现对话框并占据整个屏幕的 80%。背景将变暗,因为这是 Android Dialog 的默认行为。

Dialog dialog = new Dialog(ActQuiz.this);
                dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
                dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
                dialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
                    @Override
                    public void onDismiss(DialogInterface dialogInterface) {
                        //nothing;
                    }
                });

                int width = (int) (getResources().getDisplayMetrics().widthPixels * 0.80);
                int height = (int) (getResources().getDisplayMetrics().heightPixels * 0.80);
                dialog.getWindow().setLayout(width, height);
                ImageView imageView = new ImageView(ActQuiz.this);
                String uri = "@drawable/" + info.getInfopicture();
                int imageResource = getResources().getIdentifier(uri, null, getPackageName());
                Drawable myDrawable = ContextCompat.getDrawable(ActQuiz.this, imageResource);
                imageView.setImageDrawable(myDrawable);
                new PhotoViewAttacher(imageView);
                dialog.addContentView(imageView, new RelativeLayout.LayoutParams(width, height));
                dialog.show();

所以我想要实现的是禁用按钮的调光,它在对话框后面可见。

在此处输入图像描述

这是可能的还是我只能删除整个背景的调光?

4

1 回答 1

1

这是可能的还是我只能删除整个背景的调光?

Dialog除了某些视图或某些区域之外,不可能指示调暗所有内容。没有这样的 API 可以做到这一点。

您可以做的是提供您的自定义可绘制对象作为Dialog窗口的背景。该可绘制对象将被赋予屏幕Rect坐标aButton和 a Rect。它会在除提供的矩形之外的所有地方绘制暗淡(基本上是半透明的黑色)。看起来xfermode SrcOut是应该应用的模式。

于 2017-07-15T13:18:02.200 回答