Changing locale programmatically like below,
Locale locale = new Locale("es");
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
getBaseContext().getResources().getDisplayMetrics());
Resources.getSystem().updateConfiguration(config, null);
Is not working for nougat devices, It automatically changes to english when we switch from one activity to another