Ratifier


Source link: https://github.com/hamadakram/ratifier

Ratifier

Ratifier is a form validation library for Android.

Download

Grab via Gradle:

compile 'com.irozon.ratifier:ratifier:1.0.0' 

Or Maven:

<dependency>
<groupId>com.irozon.ratifier</groupId>
<artifactId>ratifier</artifactId>
<version>1.0.0</version>
<type>pom</type> </dependency> 

How do i use Ratifier?

To use Ratifier as your form validator, use RatifierEditText and Ratifier will handle everything. Example for Email:

 <com.irozon.ratifier.RatifierEditText

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:inputType="textEmailAddress"

app:emptyMessage="Enter email"

app:invalidMessage="Enter valid email"

app:required="true" />

And to validate use

Ratifier.Valid result = Ratifier.getValidity(this);
 if (result.isValid()) {
 // Form is valid
  Toast.makeText(this, "Email is valid", Toast.LENGTH_SHORT).show();
 
}
 else {
 // Form is not valid
  Toast.makeText(this, ratify.getErrorMsg(), Toast.LENGTH_SHORT).show();
 
}

Attributes

Following are the attributes used by RatifierEditText for validation

Attribute Descripion
required If field is required for validation or not (true/false)
emptyMessage Message for empty field
invalidMessage Message for invalid field
inputType textEmailAddress, textPassword for email and password validation. Ratifier will validate for match password also if two fields with inputType textPassword are provided. In case of invalidation, Invalid message must be provided
minCharacters Minimum characters. Invalid message must be provided for this.
regex For validation using regex like valid phone number, credit card, IP address etc. Invalid message must be provided for this.

Values can be set from activity by:

ratifierEditText.setEmptyMessage("Filed is empty");
 ratifierEditText.setInvalidMessage("Password should be greater than 4 characters");
 ratifierEditText.setRegex("/^(\+\d{
1,3
}
[- ]?)?\d{
10
}
$/");
 // Regex for valid mobile number ratifierEditText.setMinCharacters(4);

Remember to give regex from Strings.xml

Ratifier Results

Ratifier validity result will give us:

 Ratifier.Valid result = Ratifier.getValidity(this);
  boolean isValid = result.isValid();
 // boolean - If the result is valid or not.  String errorMessage = result.getErrorMsg();
 // String - Error Message if result is not valid.  RatifierEditText ratifierEditText = result.getField();
 // Will return RatifierEditText which is not valid.
  • isValid() - boolean - If the result is valid or not.
  • getErrorMsg() - String - Error Message if result is not valid.
  • getField() - RatifierEditText - Will return RatifierEditText which is not valid

Some Regex examples:

Mobile Number: /^(+\d{ 1,3 } [- ]?)?\d{ 10 } $/

Email Address: /^([a-z0-9_.-]+)@([\da-z.-]+).([a-z.]{ 2,6 } )$/

URL: /^(https?://)?([\da-z.-]+).([a-z.]{ 2,6 } )([/\w .-] )/?$/

IP Address:/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).){ 3 } (?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/

etc

Authors

Licence

Copyright 2017 Irozon, Inc.  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

Easy way to add build number to your application version.

Also you can add extra data to the file name.

CircleProgress contains CircleProgress, DonutProgress, ArcProgress. It is inspired by NumberProgressBar and CleanMaster.

JobSchedulerCompat is a backport of Android Lollipop's JobScheduler to api 10+. All JobScheduler features are implemented.

ShowTipsView let you highligth specific points of interest of your app.

The RecyclerView widget is a more advanced and flexible version of ListView. This widget is a container for displaying large data sets that can be scrolled very efficiently by maintaining a limited number of views. Use the RecyclerView widget when you have data collections whose elements change at runtime based on user action or network events.

This project is modified SwipeList to work with RecyclerView.

A robust, powerful, and very simple ORM android database library with annotation processing.

The library eliminates the need for writing most SQL statements, writing ContentValues for every table, converting cursors into models, and so much more.

Let DBFlow make SQL code flow like a steady stream so you can focus on your complex problem and not be hindered by repetitive code writing.

What sets this library apart: baked in support for multiple databases seamlessly, powerful and fluid builder logic in expressing SQL statements, annotation processing to enable blistering speed, ModelContainer classes that enable direct to database parsing for data such as JSON, and rich interface classes that enable powerful flexibility.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes