Я не знаю, решит ли это вашу проблему, но вы проверяли с помощью sharedPreferences
он позволяет сохранять значения ключей без необходимости создавать и извлекать из него файл.
Его легко создавать, вставлять и читать
проверьте это здесь
http://developer.android.com/reference/android/content/SharedPreferences.html
//create - open the sharedPreferences file
SharedPreferences pref = context.getSharedPreferences("PREF_NAME", Context.MODE_PRIVATE);
//get an editor
SharedPreferences.Editor prefsEditor = myPrefs.edit();
//add key-value
prefsEditor.putString("MY_KEY", "MY_VALUE");
//commit
prefsEditor.commit();
//get the value from key (the second param is the default if the value is null )
pref.getString("MY_KEY","VALUE_IF_NULL");