Android: locale(system Language) change effect my application layouts

前端 未结 1 786
梦如初夏
梦如初夏 2020-12-22 03:59

i\'m in my app, one activity is opened. I press home button and change language, from taskmanager opens my app. Problem: my activity layout is getting wide.

changes

相关标签:
1条回答
  • As mentioned in the comment on your question, it is normal behaviour.

    A change in Locale is considered a change of Configuration the same as a change in orientation etc.

    You need to override onConfigurationChanged in your Activity and reload everything from there.

    NOTE: You will also need to specify android:configChanges="locale" in the Activity declaration in the AndroidManifest file.

    0 讨论(0)
提交回复
热议问题