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 請參考:
Delphi 取得 iOS 輔助使用裡的字型大小