[函數] Firemonkey Android 取得系统参数设定的字型大小

幽沉谢世事,俯默窥唐虞。这篇文章主要讲述[函數] Firemonkey Android 取得系统参数设定的字型大小相关的知识,希望能为你提供帮助。
android 系统参数设定内,可以设定字型大小:

[函數] Firemonkey Android 取得系统参数设定的字型大小

文章图片

 
可以透过下面代码来取得字型大小比例:
function FontScale: Single; var Resources: JResources; Configuration: JConfiguration; begin Result := 1; if TAndroidHelper.Context < > nil then begin Resources := TAndroidHelper.Context.getResources; if Resources < > nil then begin Configuration := Resources.getConfiguration; if Configuration < > nil then Result := Configuration.fontScale; end; end; end;

 
ios 请参考:
【[函數] Firemonkey Android 取得系统参数设定的字型大小】Delphi 取得 iOS 辅助使用里的字型大小

    推荐阅读