LỰA CHỌN THAY THẾ
Đây là bài viết đầu tiên của tôi vì vậy tôi rất vui được chia sẻ mã của mình! Điều này đã làm việc cho tôi:
Đặt hai dòng này phía trên sự kiện OnCreate
final String[] Options = {"Red", "Blue"};
AlertDialog.Builder window;
Đặt mã này vào sự kiện sẽ kích hoạt điều này
window = new AlertDialog.Builder(this);
window.setTitle("Pick a color");
window.setItems(Options, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
if(which == 0){
//first option clicked, do this...
}else if(which == 1){
//second option clicked, do this...
}else{
//theres an error in what was selected
Toast.makeText(getApplicationContext(), "Hmmm I messed up. I detected that you clicked on : " + which + "?", Toast.LENGTH_LONG).show();
}
}
});
window.show();
.create()
ở đây là không cần thiết,.show()
sẽ trả về hộp thoại được tạo bởi trình tạo và sau đó cũng hiển thị nó