我在佈局中有一個imagebutton。我想用它作爲自定義對話框的啓動器。但是當我點擊它程序崩潰。代碼即時通訊使用如下:定製對話框崩潰?
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();
}
}
這是什麼錯?提前致謝。
Put日誌貓追蹤這裏 –
我只用用我在dialog.setContentView佈局其工作不是問題檢查你的佈局或將日誌跟蹤試過你的代碼。 –
謝謝你們。當我把getparent()作爲對話框構造函數的參數時......它運行良好。 – IronBlossom