gpt4 book ai didi

android - 为什么我的应用程序从本地化资源中获取了错误的字符串?

转载 作者:行者123 更新时间:2023-11-29 16:30:33 25 4
gpt4 key购买 nike

我已经为本地化创建了三个文件:“en”“ru”“uk”,我看到问题应用程序可以获取有些字符串正确,有些字符串错误。这是什么意思?例如,一个布局在其工作期间可以包含多个语言环境而不是一个语言环境,这是错误的。我看到一些用户通过向 buil.gradle 添加几行代码解决了这个问题,但也许我们有另一个解决方案,为什么几周前我的项目在 Java 中时它运行良好。我敢肯定,这不会是从一种语言转到另一种语言造成的。在 recyclerView 我可以看到类似的问题。在 Activity 中,我可以像这样设置我当前的语言:

sp = this.getSharedPreferences("app_data", 0)
val lang = sp!!.getString("language", Locale.getDefault().language)
val locale = Locale(lang)
Locale.setDefault(locale)
val config = Configuration()
config.setLocale(locale)

resources.updateConfiguration(
config, resources.displayMetrics
)

但 updateConfiguration 已被弃用,我正在寻找一些可以工作的新变体。然后我找到this问题,但这对我没有帮助。我需要在 RV 项目、 Activity 和 fragment 中设置语言,但我做不到。为什么会发生,我该如何解决这个问题?

最佳答案

实际上我必须自己做这件事。这很痛苦,尤其是对于较新的设备。

首先,您需要一个语言环境助手:

package za.co.overtake.onlinetrucks.utils;

import android.annotation.TargetApi;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.os.Build;
import android.preference.PreferenceManager;

import java.util.Locale;

/**
* This class is used to change your application locale and persist this change for the next time
* that your app is going to be used.
* <p/>
* You can also change the locale of your application on the fly by using the setLocale method.
* <p/>
* Created by gunhansancar on 07/10/15.
*/
public class LocaleHelper {

private static final String SELECTED_LANGUAGE = "Locale.Helper.Selected.Language";

public static Context onAttach(Context context) {
String lang = getPersistedData(context, Locale.getDefault().getLanguage());
return setLocale(context, lang);
}

public static Context onAttach(Context context, String defaultLanguage) {
String lang = getPersistedData(context, defaultLanguage);
return setLocale(context, lang);
}

public static String getLanguage(Context context) {
return getPersistedData(context, Locale.getDefault().getLanguage());
}

public static Context setLocale(Context context, String language) {
persist(context, language);

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
return updateResources(context, language);
}

return updateResourcesLegacy(context, language);
}

private static String getPersistedData(Context context, String defaultLanguage) {
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
return preferences.getString(SELECTED_LANGUAGE, defaultLanguage);
}

private static void persist(Context context, String language) {
SharedPreferences preferences = PreferenceManager.getDefaultSharedPreferences(context);
SharedPreferences.Editor editor = preferences.edit();

editor.putString(SELECTED_LANGUAGE, language);
editor.apply();
}

@TargetApi(Build.VERSION_CODES.N)
private static Context updateResources(Context context, String language) {
Locale locale = new Locale(language);
Locale.setDefault(locale);

Configuration configuration = context.getResources().getConfiguration();
configuration.setLocale(locale);
configuration.setLayoutDirection(locale);

return context.createConfigurationContext(configuration);
}

@SuppressWarnings("deprecation")
private static Context updateResourcesLegacy(Context context, String language)
{
Locale locale = new Locale(language);
Locale.setDefault(locale);

Resources resources = context.getResources();

Configuration configuration = resources.getConfiguration();
configuration.locale = locale;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
configuration.setLayoutDirection(locale);
}

resources.updateConfiguration(configuration,
resources.getDisplayMetrics());

return context;
}
}

这负责切换语言以及使用已弃用或未弃用的方法。

然后在每个 Activity 中,您需要覆盖此方法(我建议您只创建一个每个 Activity 都扩展的基本 Activity ):

@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(LocaleHelper.onAttach(base));
}

这应该可以解决大多数情况。但是,我使用 ViewModels,由于某些原因,当我执行 getApplication.getResources().getString() 时,它有时会返回错误的字符串。在这种情况下,我制作了一个 Utility 方法来解决这个问题:

public static Resources getResources(Context context) {
return LocaleHelper.onAttach(context).getResources();
}

所以现在我可以使用这个方法来代替通常的 getResources()。

这是一个真正的痛苦,但这是我可以在高于 android 8 和低于 android8 的设备上进行翻译的唯一方法。

稍后我会发布其中一些的链接...

编辑:另外,就像之前的回答所述,您需要重新创建更改语言的 Activity 。

链接:https://proandroiddev.com/change-language-programmatically-at-runtime-on-android-5e6bc15c758

https://gunhansancar.com/change-language-programmatically-in-android/

关于android - 为什么我的应用程序从本地化资源中获取了错误的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56360857/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com