gpt4 book ai didi

android - 如何在不同语言的Android环境中加载不同的html文件?

转载 作者:行者123 更新时间:2023-11-30 04:24:01 25 4
gpt4 key购买 nike

我有一些针对不同语言环境的不同语言的 html 文件,所有这些 html 文件都包含图像。现在我想用 WebView 显示适合当前 Android 语言的 html 文件。我怎样才能做到这一点?谢谢。

最佳答案

您可以为非英语文件指定特殊名称,例如为德语指定 file-de.html,然后使用以下代码:

private static String getFileName() {
Configuration config = getResources().getConfiguration();
InputStream stream = null;
try {
String name = "file-" + config.locale.getLanguage() + ".html";
stream = getAssets().open(name);
return name;
} catch (IOException exception) {
return "file.html";
} finally {
if (stream != null) {
stream.close();
}
}
}

关于android - 如何在不同语言的Android环境中加载不同的html文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8823374/

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