我怎样才能使警报对话框的框架不可见

发布于 2024-12-29 00:59:02 字数 420 浏览 1 评论 0原文

我制作了一个警报警报对话框。我想让对话框的框架不可见。任何人都可以告诉我如何才能做到这一点我的代码如下所示。我想让警报对话框框架不可见

LayoutInflater record = LayoutInflater.from(this);
            View record_menu = record.inflate(R.layout.recorddialog, null);
            record = null;

            record_menu.setBackgroundColor(Color.TRANSPARENT);


            alert_box = new AlertDialog.Builder(this);

            alert_box.setView(record_menu);

I made a alert Alert dialog box.I want to make the frame of the dialog box invisible.can anyone tell me how can I make this possible my code is shown below.i want to make the Alert dialogs frame invisible

LayoutInflater record = LayoutInflater.from(this);
            View record_menu = record.inflate(R.layout.recorddialog, null);
            record = null;

            record_menu.setBackgroundColor(Color.TRANSPARENT);


            alert_box = new AlertDialog.Builder(this);

            alert_box.setView(record_menu);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

有木有妳兜一样 2025-01-05 00:59:02

你可以尝试下面的代码,

alert_box.dismiss();

you can try following code,

alert_box.dismiss();

尝试用这样的方式...

    final ImageView iv24 = (ImageView)findViewById(R.id.kyst2);
            iv24.setVisibility(View.GONE);

Try in a such way...

    final ImageView iv24 = (ImageView)findViewById(R.id.kyst2);
            iv24.setVisibility(View.GONE);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文