我使用 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字体看起来太小了
这是正确的代码吗?
答案 0 :(得分:2)
您可以尝试使用标准字体大小,而不是根据屏幕大小进行计算。试试这个:
label.FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label));
您可以将其设置为小,中,大。我发现这对我的应用非常有用。查看this link了解详情。