I want to use sharedpreferrences in android. I put data to it but when get data in other activity, it can not find prefs.getboolean.
class A{
SharedPreferences.Editor editor = ApplicationLoader.applicationContext.getSharedPreferences("keymode", 0).edit();
editor.putBoolean("BotKey", true);
editor.commit();}
class B{
SharedPreferences prefs = ApplicationLoader.applicationContext.getSharedPreferences("keymode", 0);
SharedPreferences.Editor editor = prefs.edit();
if(prefs.getBoolean("BotKey",false)){}
}