如何在iphone,ipad mini和ipad平板电脑中增加字体大小

时间:2016-11-11 09:11:37

标签: xamarin.forms xlabs xamarin.forms.labs

我使用 Xlabs字体管理器和字体提供程序来增加字体大小 我在这方面取得了成功,但只有我在iPad-mini面临的问题没有改变字体大小。我用下面的代码来改变字体大小

   private const short InitialSize = 18;

    /// <summary>
    /// Finds the closest.
    /// </summary>
    /// <param name="name">The name.</param>
    /// <param name="desiredHeight">Height of the desired.</param>
    /// <returns>Font.</returns>
    public Font FindClosest(string name, double desiredHeight)
    {
        var height = this.GetHeight(Font.OfSize(name, InitialSize));

        var multiply = (int)((desiredHeight / height) * InitialSize);


        var f1 = Font.OfSize(name, multiply);
        var f2 = Font.OfSize(name, multiply + 1);

        var h1 = this.GetHeight(f1);
        var h2 = this.GetHeight(f2);

        var d1 = Math.Abs(h1 - desiredHeight);
        var d2 = Math.Abs(h2 - desiredHeight);

        return d1 < d2 ? f1 : f2;
    }

iPhone和ipad字体大小看起来很完美,但iPad mini字体看起来太小了 iPhone Font Size

iPad Font Size

iPad Mini Font Size

这是正确的代码吗?

1 个答案:

答案 0 :(得分:2)

您可以尝试使用标准字体大小,而不是根据屏幕大小进行计算。试试这个:

label.FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label));

您可以将其设置为小,中,大。我发现这对我的应用非常有用。查看this link了解详情。