gpt4 book ai didi

android - 如何在 iOS/Android 中获取语言环境 ID

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:01:13 25 4
gpt4 key购买 nike

我需要像 Windows 返回的那样获取语言环境 ID:

GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_ILANGUAGE, PChar(locale), 256)

适用于 iOS 和安卓。我需要它来获取 SQL Server 归类信息 (LCID)。

最佳答案

您可以使用 TPlatformServices 访问设备区域设置服务和 IFMXLocaleService界面。

uses
FMX.Platform;
...
...
var
LService: IFMXLocaleService;
LangID : string;
begin
if TPlatformServices.Current.SupportsPlatformService(IFMXLocaleService, IInterface(LService)) then
LangID := LService.GetCurrentLangID;
end;

关于android - 如何在 iOS/Android 中获取语言环境 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31077797/

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