An Input box with different validators and ripple transition for android. It let you to define custom animation for error text entrance and also comes up with seven ready validators.
compile 'me.omidh:rvelib:0.8.01'
<me.omidh.ripplevalidatoredittext.RippleValidatorEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:rve_hint="My Sample Hint"
app:rve_font="fonts/iran_sans_mobile.ttf"
app:rve_helperTextSize="12sp"
app:rve_editTextSize="14sp"
app:rve_topLeftCornerRadius="4dp"
app:rve_bottomLeftCornerRadius="0dp"
app:rve_bottomRightCornerRadius="0dp"
app:rve_topRightCornerRadius="4dp"
app:rve_strokeWidth="1dp"
android:inputType="number"
android:nextFocusDown="@+id/editText_next"
android:nextFocusForward="@+id/editText_next"
android:imeOptions="actionNext"
android:textColorHint="#80222222"
app:rve_helperAnimation="@anim/fab_slide_in_from_right"
app:rve_normalColor="#222222"
app:rve_typingColor="#555555"
app:rve_errorColor="#EF5350"
app:rve_backgroundColor="#00000000"
app:rve_validColor="#66BB6A"
app:rve_editTextColor="#222222"/>
This Library contains 7 ready validators. It also let you to write you custom validator.
EMPTY , EMAIL , EQUAL , BEGIN , END , MIN_LENGTH , PHONE
For a sample code please visit the Validator wiki page
You can set your desired animation for entrance of the error text.
it can be set in XML :
app:rve_helperAnimation="@anim/fab_slide_in_from_right"
If you want to use focus attributes, do not forget to add below line in your xml
android:imeOptions="actionNext"
- different ripple effect for each state
- cleaning the code
- adding enums to style for android related attributes
Omid Heshmatinia [email protected]