我在布局中有一个图像按钮。我想将其用作自定义对话框的启动器。但是当我点击它时,程序崩溃了。我使用的代码如下:
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();
}
}
那有什么问题?提前致谢。