0

我在布局中有一个图像按钮。我想将其用作自定义对话框的启动器。但是当我点击它时,程序崩溃了。我使用的代码如下:

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();
          }
    }

那有什么问题?提前致谢。

4

1 回答 1

0
LayoutInflater newProject = LayoutInflater.from(Details.this);
View projectView =newProject.inflate(R.layout.sharepopup, null);

Dialog dialog= new Dialog(Details.this);
dialog.setContentView(projectView);
....

尝试这个...

于 2011-11-21T12:31:03.040 回答