自定义对话框崩溃?
我的布局中有一个图像按钮。我想用它作为自定义对话框的启动器。但当我点击它时,程序崩溃了。我使用的代码如下:
ImageButton bt = (ImageButton) findViewById(R.id.print_button);
bt.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Dialog dialog = new Dialog(Details.this);
dialog.setContentView(R.layout.sharepopup);
dialog.setTitle("");
dialog.setCancelable(true);
dialog.show();
}
}
有什么问题吗?提前致谢。
i have a imagebutton in a layout. i want to use this as a launcher of a custom dialog. but when i click it the program crashes. code im using is below:
ImageButton bt = (ImageButton) findViewById(R.id.print_button);
bt.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Dialog dialog = new Dialog(Details.this);
dialog.setContentView(R.layout.sharepopup);
dialog.setTitle("");
dialog.setCancelable(true);
dialog.show();
}
}
whats wrong with that? thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个...
try this...