-2
如何給Alert框添加一個函數意味着我在andriod中創建了一個Tic Tac Toe遊戲問題是當一個玩家贏得遊戲時,一個Alert框出現並詢問「想再次玩」如果他點擊是,那麼遊戲再次播放,但在警報框中,我沒有再次運行功能在Android中需要關於Alert Box的幫助
如何給Alert框添加一個函數意味着我在andriod中創建了一個Tic Tac Toe遊戲問題是當一個玩家贏得遊戲時,一個Alert框出現並詢問「想再次玩」如果他點擊是,那麼遊戲再次播放,但在警報框中,我沒有再次運行功能在Android中需要關於Alert Box的幫助
此代碼將解決您的問題。
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Unable to Access Camera, Face Unlock will not work!")
.setCancelable(false)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
**//write your code here in case of OK**
}
})
.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
**//write your code here in case of user press cancel**
}
});
AlertDialog alert = builder.create();
alert.show();
在發佈之前,請花些時間至少格式化您的代碼。 – csmckelvey