在Android设备上运行时,FontMetrics不正确。模拟器很好

时间:2011-03-10 11:25:24

标签: java android fontmetrics

我有一个Android应用程序,可根据Android设备的分辨率动态缩放文本。 我已在Android模拟器中的所有预定义分辨率上测试了此代码,我的代码运行正常。 (这包括与HTC Desire和Motorola Droid相同的分辨率)

它在我的HTC Wildfire上也能正常工作。

以下是模拟器的一些屏幕截图:

enter image description here enter image description here enter image description here

然而......我在HTC Desire上尝试了这个,而且我有使用Motorola Droid的用户报告说这些字体没有正确缩放:

enter image description here

请注意它是如何关闭文本的。

为什么这不适用于这些特定设备的任何想法?

我目前有一个功能可以根据文本的可用高度缩小文本......这样的事情:

public static float calculateHeight(FontMetrics fm) {

    return Math.abs(fm.ascent) + fm.descent;

}


public static int determineTextSize(Typeface font, float allowableHeight) {

    Paint p = new Paint();
    p.setTypeface(font);

    int size = (int) allowableHeight;
    p.setTextSize(size);

    float currentHeight = calculateHeight(p.getFontMetrics());

    while (size!=0 && (currentHeight) > allowableHeight) {
            p.setTextSize(size--);
        currentHeight = calculateHeight(p.getFontMetrics());
    }

    if (size==0) {
        System.out.print("Using Allowable Height!!");
        return (int) allowableHeight;
    }

    System.out.print("Using size " + size);
    return size;
}

为什么只在几台设备上发生这种情况?以及如何解决它? 还有其他字体指标,而不是我需要考虑的,我不知道吗?像Scale还是DPI?

感谢。

1 个答案:

答案 0 :(得分:6)

我想提一下两件事。

根据我的经验,我通过从FontMetrics.bottom中减去FontMetrics.top来计算字体高度(以像素为单位)。这是由于Y轴的底部和顶部的正负值。请参阅Android文档。所以我会按如下方式更改您的calculateHeight方法:

public static float calculateHeight(FontMetrics fm) {
    return fm.bottom - fm.top;
}

其次,您应该记住,您的determineTextSize方法将返回以像素为单位的大小。如果您使用它来设置TextView的文本大小,那么您应该将单位指定为TypedValue.COMPLEX_UNIT_PX。此方法的默认单位为TypedValue.COMPLEX_UNIT_SP