My app has a language setting feature. Now it works perfectly, but after I restart the device, the language reverts to the original setting.

Does anyone have any ideas? Do i need to implement SharedPreferences?


I got the answer. If you have Language setting inside your app. and after restart device the last language you've changed still be default. One of the way to make this work, to store variable through SharedPreferences ; might be String language.

Another thing, you need to have is initiate class. so that, whenever you open app. it able to call.

For example

Setting appSettings = Setting.getInstance(getApplicationContext());

language = appSetting.getLanguage();

appSetting.setLanguage(language);

link|improve this question

1  
ya you need to store the options for language while chosen by user. – Padma Kumar Dec 6 '11 at 14:24
Thanks all you guy i will try all of your advises – April Dec 6 '11 at 14:43
feedback

4 Answers

up vote 2 down vote accepted

Yes, the best option is to use SharedPreferences.

You can find a tutorial here: http://www.sgoliver.net/blog/?p=1731

Hope this helps...

link|improve this answer
thanks you for you help, but i think event we change it by using SharedPreferences, The Whole application still not change .. just some activity i guess,is't it? according to FunkTheMonk – April Dec 6 '11 at 17:02
Thanks so much SharedPreferences work now – April Dec 7 '11 at 0:14
feedback

Indeed, you should use a SharedPreferences variable to store active language.

link|improve this answer
Have you try it? for language.. i try but it's not work, i don't know why? – April Dec 6 '11 at 16:48
No, I didn't actually... – Ramseys Dec 6 '11 at 17:11
thanks you it works now – April Dec 7 '11 at 0:13
feedback

Unless they've changed things, changing locale on a per-activity basis is a bad idea. Instead you should start the device's language setting activity via an intent using this action

link|improve this answer
seem like this might be the better way to change language, Just.. wonder there is no way to update application language in code really? – April Dec 6 '11 at 16:57
feedback

You don't need to use SharedPreferences, but rather the android:configChanges="locale" attribute in your manifest. If you change the current Locale then the activity will remember it for you.

link|improve this answer
i try this, but after restart the device the device, app language still use "ENGLISH" which is the default language of this device. By the way, i declare android:configChanges="locale" inside Application tag: <Application android:configChanges="locale" > , Am i right? – April Dec 6 '11 at 14:47
No it's an activity attribute (I don't know why) : <activity android:configChanges="locale ...>" – LadaRaider Dec 6 '11 at 14:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.