如何在 android 中的自定义对话框中添加单选列表?
我想将单个选择列表添加到自定义对话框中,我已经在不同类型中尝试过,但我的应用程序仅因空指针错误而崩溃。我发现它只能在许多示例中以 AlertDialog.Builder 格式完成。请举个例子帮助我。谢谢。
I would like to add a single choice list to custom dialog I have tried it in different types but I am getting the app crashed with a null pointer error only.I find it can be done only in AlertDialog.Builder format only in many examples.Kindly help me on this with a example.Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个
Try this
APIDemos 应用程序有一个示例。你可以从中得到帮助。
APIDemos application has a sample for this. You can take help from it.
创建自定义对话框的步骤:
创建对话框布局文件,如:
因为ListView中的布局是自定义的,所以要为ListView创建布局文件:
创建自定义Dialog类 PriorityDlg 继承自Dialog
要创建自定义对话框
其中R .style.dlg_priority 设置对话框使用的样式文件,只是让对话框去掉标题栏,当然你可以通过代码来完成这个效果:
Steps for Creating customize dialog:
Create the dialog box layout files, like:
Because the layout in the ListView custom, so to create a layout file for the ListView:
Create a custom Dialog class PriorityDlg inherited from Dialog
To create a custom dialog box
Where R.style.dlg_priority set the dialog box uses the style file, just let the dialog box to remove the title bar, and of course you can code to complete this effect: