Reputation: 21
If I change my device orientation my app language also changed as default language on oreo+ version. Language not changing on 8+. Help me.
Upvotes: 0
Views: 216
Reputation: 4283
You should call your method
updateResources(Context context, String language)
in your activity or fragment's onResume()
The onResume() method is called when screen orientation changes, hence your texts will be written in the given locale.
Upvotes: 2