我怎样才能使警报对话框的框架不可见
我制作了一个警报警报对话框。我想让对话框的框架不可见。任何人都可以告诉我如何才能做到这一点我的代码如下所示。我想让警报对话框框架不可见
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试下面的代码,
you can try following code,
尝试用这样的方式...
Try in a such way...