Issue
I wounder if there is some different way of validating EditText on android controlls.. Or should I use the regular java way of doing this?
Solution
What kind of validation are we taking about?
Numbers:
android:numeric="decimal"
Length:
android:maxLength="10"
You can also provide "hints" of what the valid data should be:
android:hint="@string/numberHint"
Answered By - Bryan Denny