Is it possible to change the language of an app programmatically while still using Android resources?
If not, is it possible to request a resource in an specific lan
Take note that this solution using updateConfiguration
will not be working anymore with the Android M release coming in a few weeks. The new way to do this is now using the applyOverrideConfiguration
method from ContextThemeWrapper
see API doc
You can find my full solution here since I faced the problem myself: https://stackoverflow.com/a/31787201/2776572