如何访问自定义警报对话框的布局参数...?
,我收到空指针异常
由于无法识别自定义警报对话框中的布局参数
。那么,如果有人知道这一点请帮助我......?
提前致谢...!
builder = new AlertDialog.Builder(this);
builder.setView(getLayoutInflater().inflate(R.layout.custom_dialog, null));
//AlertDialog dialog = new AlertDialog.Builder(this).create();
//dialog.setContentView(R.layout.custom_dialog);
dialog = builder.create();
customDialogList = (ListView) dialog.findViewById(R.id.custom_list);
customDialogList.setAdapter(customDialogAdapter); // here null pointer exception
dialog.setCancelable(true);
dialog.show();
I am getting null pointer exception,
due to failed to recognize layout parameter in the custom alert dialog.
So, If any one know this please help me...?
Thanks in advance...!
builder = new AlertDialog.Builder(this);
builder.setView(getLayoutInflater().inflate(R.layout.custom_dialog, null));
//AlertDialog dialog = new AlertDialog.Builder(this).create();
//dialog.setContentView(R.layout.custom_dialog);
dialog = builder.create();
customDialogList = (ListView) dialog.findViewById(R.id.custom_list);
customDialogList.setAdapter(customDialogAdapter); // here null pointer exception
dialog.setCancelable(true);
dialog.show();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个。
try this.