OPTION DE RECHANGE
C'est mon premier post, donc je suis excitée de partager mon code ! Cela a fonctionné pour moi :
Placez ces deux lignes au-dessus de l'événement OnCreate
final String[] Options = {"Red", "Blue"};
AlertDialog.Builder window;
Placez ce code sur l'événement qui déclenchera ceci
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();