Guest User

Untitled

a guest
Aug 15th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. How to refresh activity after changing language (Locale) inside application
  2. android:configChanges="locale"
  3.  
  4. public void onResume() {
  5. super.onResume();
  6. ...
  7. if (localeHasChanged) {
  8. setContentView(R.layout.xxx);
  9. }
  10. ...
  11. }
Add Comment
Please, Sign In to add comment