나는 핸들러에서 경고 대화 상자를 호출하고 있습니다. 경고 대화 상자에는 "다시 재생"과 "종료"버튼이 있습니다. "다시 재생"버튼에서 활동을 다시 시작하는 코드를 작성했습니다. 하지만 종료 단추를 클릭하면 응용 프로그램을 완료하는 방법을 모릅니다. 난 당신이 완료하고자하는 당신의 위의 코드 활동에 경우처리기에서 활동을 마무리하는 방법은 무엇입니까?
private Handler handler = new Handler() {
public void handleMessage(Message msg) {
AlertDialog.Builder builder = new AlertDialog.Builder(_context);
builder.setMessage("Game Over !!!")
.setCancelable(false)
.setPositiveButton("Play Again",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog,int which) {
//thread.start();
Intent intent = new Intent (_context , DroidzActivity.class);
_context.startActivity (intent);
}
})
.setNegativeButton("Exit",
new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog,int which) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
}
};
내가이 –
아무도 해결책을 알고 ...이 붙어 있어요 좀 도와주세요를 ????? : ( –