In the Xamarin.Forms Android MainActivity.cs, override the Resources and set the configuration to default to restrict the font size effect on application.
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
public override Resources Resources
{
get
{
Resources resource = base.Resources;
Configuration configuration = new Configuration();
configuration.SetToDefaults();
if (Build.VERSION.SdkInt >= Build.VERSION_CODES.NMr1)
{
return CreateConfigurationContext(configuration).Resources;
}
else
{
resource.UpdateConfiguration(configuration, resource.DisplayMetrics);
return resource;
}
}
}
}