Changing locale: Force activity to reload resources?

后端 未结 6 1494
感情败类
感情败类 2020-11-30 06:24

So I have a language setting in my application. When the language is switched, I would like all the textviews etc to change language immediately. Currently I just change the

6条回答
  •  情话喂你
    2020-11-30 07:21

    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);
    }
    

    https://developer.android.com/guide/topics/manifest/activity-element.html#config

提交回复
热议问题