简体   繁体   中英

Check if there is no option selected on a ListPreference

I want to show a toast when the user did not selected an option from a ListPreference, for that i tried this code and did not work:

SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
        final String carbu;
        carbu = prefs.getString("listPref_carbu", "0");

         if ((Integer.valueOf(carbu) != 0) && (Integer.valueOf(carbu) != 1) && (Integer.valueOf(carbu) != 2)) {
             Toast.makeText(Acceuil.this, "Veuillez paramétrer votre voiture depuis la section 'Paramètres'", Toast.LENGTH_SHORT).show();

Have you any idea of how solving this problem? Thank you.

Try changing this line:

carbu = prefs.getString("listPref_carbu", "0"); 

To:

carbu = prefs.getString("listPref_carbu", "-1");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM