android应用发布后java语言的变化

eivgtgni  于 2021-06-29  发布在  Java
关注(0)|答案(1)|浏览(446)

在进入游戏市场后,语言无法更改,尽管在设备和模拟器上一切正常。我得出的结论是,google只在更改系统语言时才会屏蔽语言并重新加载,这是原因吗?如果是,如何手动查询或绕过它们?
而负责这个的类本身看起来是这样的:

public class MyContextWrapper extends ContextWrapper {

public MyContextWrapper(Context base) {
    super(base);
}

@SuppressWarnings("deprecation")
public static ContextWrapper wrap(Context context, String language) {
    Configuration config = context.getResources().getConfiguration();
    Locale sysLocale = null;
    if (Build.VERSION.SDK_INT > Build.VERSION_CODES.N) {
        sysLocale = getSystemLocale(config);
    } else {
        sysLocale = getSystemLocaleLegacy(config);
    }
    if (!language.equals("") && !sysLocale.getLanguage().equals(language)) {
        Locale locale = new Locale(language);
        Locale.setDefault(locale);
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
            setSystemLocale(config, locale);
        } else {
            setSystemLocaleLegacy(config, locale);
        }
    }
    context.getResources().updateConfiguration(config, context.getResources().getDisplayMetrics());
    Language.setLang(language);
    return new MyContextWrapper(context);
}

@SuppressWarnings("deprecation")
public static Locale getSystemLocaleLegacy(Configuration config) {
    return config.locale;
}

@TargetApi(Build.VERSION_CODES.N)
public static Locale getSystemLocale(Configuration config) {
    return config.getLocales().get(0);
}

@SuppressWarnings("deprecation")
public static void setSystemLocaleLegacy(Configuration config, Locale locale) {
    config.locale = locale;
}

@TargetApi(Build.VERSION_CODES.N)
public static void setSystemLocale(Configuration config, Locale locale) {
    config.setLocale(locale);
}

@Override
protected void attachBaseContext(Context newBase) {
    super.attachBaseContext(MyContextWrapper.wrap(newBase, Language.getLang()));
}
lymgl2op

lymgl2op1#

如果您交付的是捆绑包,而不是apk,请将此代码块添加到应用程序中 build.gradle ```
android {
...
bundle {
language {
enableSplit = false
}
}
}

请参阅重新启用或禁用配置APK的类型

相关问题