[函數] Firemonkey Android 取得系统参数设定的…

2018-06-17 18:57:52来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

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 辅助使用里的字型大小

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Delphi的几个跨平台小游戏例子。

下一篇:【近况】杂事+分享阿里大于短信验证码的完整实现代码