ALTERNATİF SEÇENEK
Bu benim ilk gönderim, bu yüzden kodumu paylaşmaktan heyecan duyuyorum! Bu benim için çalıştı:
Bu iki satırı OnCreate olayının üzerine yerleştirin
final String[] Options = {"Red", "Blue"};
AlertDialog.Builder window;
Bu kodu, bunu tetikleyecek olaya yerleştirin
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()
burada gereksizdir.show()
, inşaatçı tarafından oluşturulan iletişim kutusunu döndürür ve sonra da gösterir