//About Button in the principal menu
final Button button3 = (Button) findViewById(R.id.button3);
button3.setOnClickListener(
new OnClickListener() {
public void onClick(View v) {
//set up dialog
Dialog dialog = new Dialog(MainMenu.this);
dialog.setContentView(R.layout.maindialog);
dialog.setTitle("About");
dialog.setCancelable(true);
//now that the dialog is set up, it's time to show it
dialog.show();
Button closeButton = (Button) dialog.findViewById(R.id.Button01);
// closeButton.setOnClickListener(new Button.OnClickListener() {
// public void onClick(View view) {
// dialog.dismiss();
// }
// });
if(v==closeButton)
dialog.dismiss();
}
});
私はこのコードを持っていますが、却下は機能しません。カスタムダイアログを閉じることができません。
私は「約」ボタンを持っており、それをクリックするとダイアログウィンドウが表示されます。 ダイアログウィンドウには「OK」ボタンがあり、このOKボタンはダイアログを閉じる必要がありますが、切断は機能していません。 理由を知ってもらえますか?
グレート!!!私を助けてくれてありがとう。ありがとうございましたunholysampler = D – Ricardo
私を助けてくれてありがとうGlendon Trullinger! :) – Ricardo