// Todo 테스트 필요 //ShardPreference public static void set_Prefer(Context context,String key, String data){ if (app_Preferences == null) { app_Preferences = context.getSharedPreferences(SP_name,Context.MODE_PRIVATE); } SharedPreferences.Editor editor = app_Preferences.edit(); editor.putString(key,data); editor.apply(); editor.commit(); } public static String get_Prefer(Context context,String key){ ..