Android动态设置APP语言

 

开发项目的时候没遇到国际化需求,往往会有需要用户单独设置APP语言的需求,并不跟随系统语言。

特此记录一下

在系统为7.0之前,直接改变Configuration的local属性就可以做到语言切换,7.0以后需要在页面的attachBaseContext方法做createConfigurationContext处理。

public static Context attachBaseContext(Context context) {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            //7.0及以后
            return updateResources(context);
        } else {
            //7.0之前
            Configuration configuration = context.getResources().getConfiguration();
            configuration.locale =  Locale.ENGLISH;
            DisplayMetrics displayMetrics = context.getResources().getDisplayMetrics();
            context.getResources().updateConfiguration(configuration, displayMetrics);
            return context;
        }
    }
@TargetApi(Build.VERSION_CODES.N)
    private static Context updateResources(Context context) {
        Resources resources = context.getResources();
        Configuration configuration = resources.getConfiguration();
        configuration.locale = Locale.ENGLISH;
        return context.createConfigurationContext(configuration);
    }

7.0之后一定要重写Activity的attachBaseContext

@Override
    protected void attachBaseContext(Context newBase) {
        super.attachBaseContext(LocalUtils.attachBaseContext(newBase));
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值