public TypefaceTextView(final Context context, final AttributeSet attrs, final int defStyle) {
   super(context, attrs, defStyle);
   TypefaceUtil.setFace(this, context, attrs);
   // TypefaceUtil.setTypography(this, context, MaterialUIMainApplication.DEFAULT_FONT);
 }
 public TypefaceTextView(final Context context) {
   super(context);
   TypefaceUtil.setTypography(this, context, MaterialUIMainApplication.DEFAULT_FONT);
   this.setTransformationMethod(null);
 }