mercredi 26 septembre 2012

android - Changing locale: Force activity to reload resources? - Stack Overflow

android - Changing locale: Force activity to reload resources? - Stack Overflow: In your AndroidManifest.xml, add this attribute to your Activity
android:configChanges="locale"
In your activity override onConfigurationChanged()
@Override
public void onConfigurationChanged(Configuration newConfig) {
   // refresh your views here
   super.onConfigurationChanged(newConfig);
}

Aucun commentaire:

Enregistrer un commentaire