冷门干货-你知道Android-中1px的字到底有多高?

AscentDescent的值为以baseLine作为原点的坐标,根据这三个值,我们可以计算出字体的高度。

TextHeight = (Ascent - Descent) / EM-Square * TextSize
LineHeight = (Ascent - Descent + LineGap) / EM-Square * TextSize

上表中,我们已知宋体-常规的ascent1060descent-340

TextSize为100Pixcel的宋体常规字符高度为
height = (1060 - (-340)) / 1000 * 100 = 140px

所以对于宋体,1Px的字高为1.4Px

常见字体LineGap一般均为0,所以一般lineHeight = textHeight

常用字体参数

iOS默认字体 - [San Francisco]

TextHeight = 1.193359375 TextSize

Android默认字体 - [Roboto - Regular]

TextHeight = 1.17187502 TextSize

UI适配误区

image.png

如上图Sketch设计稿中,字体为28px,字体居上下边框为32px,如果按照这样的参数进行UI还原的话,以Android默认设备为例,外围背景会比原来高28 * (1.17 - 1) = 4.76个像素(Android IncludeFontPadding = false)。

这是因为该设计稿中框选的lineHeight = textSize,这在一般的字体中是不正确的!会导致一些文字显示不下或者两行文字的上下端部分叠加。同理,用字的高度去得出TextSize也是不正确的!框选文字的时候不能刚刚够框选中文,实际上这种做法输入框输入个'j'便会超出选框,虽然仍能显示。

正确做法应该将lineHeight设置为 28 * 1.17 = 33,然后再测出上下边距。

image.png

如图,文字的实际位置并没有变化,但是文字的lineHeight变大了,上下边距相应减少为29px30px

对于设计稿中LineHeight > 字体实际高度(如1.17 * textSize)的情况下,我们可以设置lineSpace = lineHeight - 1.17 textSize 去精确还原行间距。

结论:UI中字体还原不到位一般是对字体高度理解有误解,实际上1Px的字体在客户端中一般不等于1Px,而等于1.19(iOS) or 1.17 (Android) 个Px。

Android IncludeFontPadding

/**

  • Set whether the TextView includes extra top and bottom padding to make
  • room for accents that go above the normal ascent and descent.
  • The default is true.
  • @see #getIncludeFontPadding()
  • @attr ref android.R.styleable#TextView_includeFontPadding
    */
    public void setIncludeFontPadding(boolean includepad) {
    if (mIncludePad != includepad) {
    mIncludePad = includepad;

if (mLayout != null) {
nullLayouts();
requestLayout();
invalidate();
}
}
}

Android TextView 默认IncludeFontPadding为开启状态,会在每一行字的上下方留出更多的空间。

if (getIncludeFontPadding()) {
fontMetricsTop = fontMetrics.top;
} else {
fontMetricsTop = fontMetrics.ascent;
}

if (getIncludeFontPadding()) {
fontMetricsBottom = fontMetrics.bottom;
} else {
fontMetricsBottom = fontMetrics.descent;
}

我们通过Textview的源码可以发现,只有IncludeFontPadding = false的情况下,textHeight计算方式才与iOS端与前端相统一。默认true情况会选取topbottom,这两个值在一般情况下会大于ascentdescent,但也不是绝对的,在一些字体中会小于ascentdescent

public static class FontMetrics {
/**

  • The maximum distance above the baseline for the tallest glyph in
  • the font at a given text size.
    /
    public float top;
    /
    *
  • The recommended distance above the baseline for singled spaced text.
    /
    public float ascent;
    /
    *
  • The recommended distance below the baseline for singled spaced text.
    /
    public float descent;
    /
    *
  • The maximum distance below the baseline for the lowest glyph in
  • the font at a given text size.
    /
    public float bottom;
    /
    *
  • The recommended additional space to add between lines of text.
    */
    public float leading;
    }

对于topbottom,这两个值在 ttc/ttf 字体中并没有同名的属性,应该是Android独有的名称。我们可以寻找获取FontMetrics的方法(getFontMetrics)进行溯源。

public float getFontMetrics(FontMetrics metrics) {
return nGetFontMetrics(mNativePaint, metrics);
}

@FastNative
private static native float nGetFontMetrics(long paintPtr, FontMetrics metrics);

PaintgetFontMetrics最终调用了native方法nGetFontMetricsnGetFontMetrics的实现在Android源码中的Paint_Delegate.java

@LayoutlibDelegate
/package/
static float nGetFontMetrics ( long nativePaint, long nativeTypeface,FontMetrics metrics){
// get the delegate
Paint_Delegate delegate = sManager.getDelegate(nativePaint);
if (delegate == null) {
return 0;
}
return delegate.getFontMetrics(metrics);
}

private float getFontMetrics (FontMetrics metrics){
if (mFonts.size() > 0) {
java.awt.FontMetrics javaMetrics = mFonts.get(0).mMetrics;
if (metrics != null) {
// Android expects negative ascent so we invert the value from Java.
metrics.top = -javaMetrics.getMaxAscent();
metrics.ascent = -javaMetrics.getAscent();
metrics.descent = javaMetrics.getDescent();
metrics.bottom = javaMetrics.getMaxDescent();
metrics.leading = javaMetrics.getLeading();
}

return javaMetrics.getHeight();
}

return 0;
}

由上可知topbottom实际上取得是Java FontMetrics中的MaxAscentMaxDescent,对于MaxAscent的取值OpenJDK官网论坛给出了答案:

Ideally JDK 1.2 should have used the OS/2 table value for usWinAscent,
or perhaps sTypoAscender (so there’s at least three choices here,
see http://www.microsoft.com/typography/otspec/recom.htm#tad for
more info).
For max ascent we could use the yMax field in the font header.
In most fonts I think this is equivalent to the value we retrieve from the hhea table,
hence the observation that both methods return the max ascent.

所以我们可以获知,Android默认取的是字体的yMax高度,通过查找Apple Font手册我们可以知道yMax是字符的边界框范围,所以我们可以得出以下公式:

includeFontPadding default true
TextHeight = (yMax - yMin) / EM-Square * TextSize

includeFontPadding false
TextHeight = (ascent - descent) / EM-Square * TextSize

Android默认字体roboto在默认includeFontPadding = true情况下,textHeight = 1.32714844 textSize

所以Android UI适配,如果不改变includeFontPadding,可以将系数调整为1.327

总结

相同textSize的字体,高度由字体本身决定

字体公式

TextHeight = (Ascent - Descent) / EM-Square * TextSize
LineHeight = (Ascent - Descent + LineGap) / EM-Square * TextSize

Android - includeFontPadding true
TextHeight = (yMax - yMin) / EM-Square * TextSize

客户端默认字体下,1个Px的高度值并不为1Px

最后

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级Android工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助

因此我收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门

如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!
伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点!不论你是刚入门Android开发的新手,还是希望在技术上不断提升的资深开发者,这些资料都将为你打开新的学习之门**

如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且会持续更新!

  • 3
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值