I changed the locale
of my application programmatically, like following:
Resources res = context.getResources();
DisplayMetri
You can simply detach and attach fragment as below
Fragment currentFragment = getFragmentManager().findFragmentByTag("FRAGMENT");
FragmentTransaction fragTransaction = getFragmentManager().beginTransaction();
fragTransaction.detach(currentFragment);
fragTransaction.attach(currentFragment);
fragTransaction.commit();
This will refresh the view and locale will change