我想创建一个弹出窗口

I want to create a popup

我正在尝试创建一个弹出窗口。

我想让弹出窗口的背景和边框透明,因为弹出窗口没有填满页面,有点不透明,有没有简单的方法可以做到这一点?

我试过activity但是我无法得到我想要的效果,你能帮我吗?

像这样:

您可以为此使用警报对话框并检查此 link 以了解不同的用途

像这样简单的

AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
        builder.setTitle("Alert Dialog Title");
        builder.setMessage("Your Message");
        builder.setNegativeButton("No", null);
        builder.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {

            }
        });
        builder.show();

result