@TargetApi(Build.VERSION_CODES.HONEYCOMB)
 public FloatLabeledEditText(Context context, AttributeSet attrs, int defStyle) {
   super(context, attrs, defStyle);
   mContext = context;
   setAttributes(attrs);
   initialize();
 }
 public FloatLabeledEditText(Context context, AttributeSet attrs) {
   super(context, attrs);
   mContext = context;
   setAttributes(attrs);
   initialize();
 }