码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2016-10-28 09:37:50      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:参考   and   tco   one   getc   ref   androi   android   参数   

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

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

标签:参考   and   tco   one   getc   ref   androi   android   参数   

原文地址:http://www.cnblogs.com/onechen/p/6006392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!