| | |
| | | import android.content.Context; |
| | | import android.content.SharedPreferences; |
| | | import android.content.SharedPreferences.Editor; |
| | | |
| | | import com.moral.screen.MainApp; |
| | | import com.moral.screen.activity.MapActivity; |
| | | |
| | | public class SharedPreferencesUtil { |
| | | private Context mContext; |
| | | public final static String SP_LOGIN_USER_KEY = "login_user"; |
| | |
| | | return orgId; |
| | | } |
| | | |
| | | public void exitLogin(){ |
| | | SharedPreferences preferences = mContext.getSharedPreferences(SP_LOGIN_USER_KEY, Context.MODE_PRIVATE); |
| | | Editor editor = preferences.edit(); |
| | | editor.putInt("orgId",0); |
| | | editor.commit(); |
| | | MainApp.theApp.orgId=0; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 保存是否第一次登陆 |