public CustomFontButton(Context context) : base(context) { CustomFontHelper.ApplyCustomFont(this, context, null); }
public CustomFontTextView(Context context) : base(context) { CustomFontHelper.ApplyCustomFont(this, context, null); }
public CustomFontButton(Context context, IAttributeSet attrs, int defStyle) : base(context, attrs, defStyle) { CustomFontHelper.ApplyCustomFont(this, context, attrs); }
public CustomFontTextView(Context context, IAttributeSet attrs) : base(context, attrs) { CustomFontHelper.ApplyCustomFont(this, context, attrs); }