In the localization guide, it automatically updates ... and when I use the spinners in my application, it updates correctly. Do you have a spinner class configured at the bottom of your class? or just in choosing your counter, restart it as:
if(selected.equals("english")
{
finish()
Intent myIntent = new Intent(main.this,main.class);
main.this.startActivity(myIntent);
}
if(selected.equals("french"){
refresh();
}
public void refresh(){
finish()
Intent myIntent = new Intent(main.this,main.class);
main.this.startActivity(myIntent);
}
source
share