语言

Menu
Sites
Language
Language change after application is launched

Hi,

I am taking care of different languages in my application but i have doubt for one scenario.

After application is launched, user puts the application in background through home screen button and chagnes the language from settings. 

Now if application is again selected from task manager, the form is displaying old language.

Please let me know how to handle such scenario.

Thanks

编辑者为: Brock Boland 17 3月, 2014 原因: Paragraph tags added automatically from tizen_format_fix module.

响应

3 回复
youngsik yoon
please refer to sample application "MultiLanguage" and dev guide https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.native.appprogramming%2Fhtml%2Ftutorials%2Fapp_tutorial%2Ftask_multilanguage.htm you can create string resource file for each country in sdk.
hgw7
As shown in sample application mentioned above, write code for language settings in 'OnDraw()' method. OnDraw() gets called automatically after language is changed in settings.
Manish Kaushik
Thanks. I was expecting platform to take care of this somehow but looks like in ondraw() i will have to get all strings again and set them. Thanks again for your time.