I am trying to get value from SharedPreferences and storing it inside of an static variable. The problem is sometimes I am getting null value from static variable but SharedPreferences has value. I have stored value via this process:
SharedPreferences sp = u.returnShare();
SharedPreferences.Editor editor = sp.edit();
StaticVariables.userId = sp.getString("UserId", "default");