Skip to content

Instantly share code, notes, and snippets.

@jimbray
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimbray/a2c57cb094ad65f4a49a to your computer and use it in GitHub Desktop.
Save jimbray/a2c57cb094ad65f4a49a to your computer and use it in GitHub Desktop.
在应用中切换语言
Resources resources = getResources();//获得res资源对象
Configuration config = resources.getConfiguration();//获得设置对象
DisplayMetrics dm = resources .getDisplayMetrics();//获得屏幕参数:主要是分辨率,像素等。
config.locale = Locale.SIMPLIFIED_CHINESE; //简体中文
resources.updateConfiguration(config, dm);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment