android - Are shared preferences stored in memory during runtime? -
are shared preferences in android read @ startup , stored in memory during runtime? if not, there more efficient ways read preferences this?
settings = getsharedpreferences("myprefsfile", 0); int answer = settings.getint("ultimate_question", 42);
are shared preferences in android read @ startup , stored in memory during runtime
simply yes till user doesn't clear manually setting.
are there more efficient ways read preferences this
as jonascz said in comments.. common , developer friendly way till now.
Comments
Post a Comment