ValidUtils


Source link: https://github.com/shree-vastava/ValidUtil

A utility library that does the following things:

  • Check internet connection
  • Validate for empty edit texts
  • Validate for email
  • Validate for mobile number
  • Validate text for any no of digits
  • Fancy Progress Dialog

Watch it in action here

How to add

Add this in the project level build.gradle:



 repositories{

 ....

 maven {
 url 'https://jitpack.io' 
}

  
}
 

And this in the app level build.gradle

compile 'com.github.shree-vastava:ValidUtil:v1.0' 

How to use

Create an object of the ValidUtils class


 ValidUtils validUtils = new ValidUtils()  

Check for internet connection


 if (validUtils.isNetworkAvailable(this)){

// do whatever you want to do IF internet is AVAILABLE
  
}
 

Check for empty EditTexts


 if(validUtils.validateEditTexts(name,mobile,email)){
 //where name,mobile, email are EditTexts

// do whatever you want to do if EditTexts are not empty
  
}
 

Check for Email validation


 if(validUtils.validateEmail(email)){

 // do whatever you want to do if email is valid i.e in form of [email protected]
  
}
 

You can check for more email EditTexts also by passing comma separate EditTexts in the above function

Check for mobile Number


 if(validUtils.validateMobileNumber(mobile)){

 // do whatever you want to do if mobile number is valid i.e 10 digits
  
}
 

You can check for multiple mobile EditTexts

Check for no of digits in an EditText


 if(validUtils.validateForDigits(Pin,6)){

 // do whatever you want to do if Pin is 6 digits
  
}
 

Here Pin the EditText

Show and hide Fancy Progress Dialog


validUtils.showProgresDialog(this,this) 

where the arguements are like


validUtils.showProgressDialog(Context, Activity) 

To hide the dialog


validUtils.hideProgressDialog() 

The last and simplest as well as bonus functionality

The Toast

  validUtils.showToast(Context,"some message") 

Resources

A Month and a Week view groups to present data.

Features:

  • Customizable colors and text sizes
  • Overflow mark below the day when the views don't fit
  • First day of the week can be set to Sunday, Saturday or Monday

Noodle is a very simple object storage and persistence library for Android.

No schema, no relations, no consistency rules, no thread-contained objects. You can use it as a key-value storage or collections - which are similar to tables, but not really.

Simple custom view of a beating heart using scaling animation. Has option to set the duration of animation based on BPM (beats per minute).

Are you tired of creating a new DialogFragment for each Dialog that you want to display?

This is an Android library that provides a simple implementation of a DialogFragment. It allows to define the content of the Dialog (and its button listeners) without having to create a new DialogFragment subclass.

Android App starter based on Android + MVP + Dagger2 + RxJava2 + Robolectric + Espresso + Mockito + JaCoCo.

Floating-ArcMenu A prety menu for all application

Android floating arc menu which reacts on scrolling events. Becomes visible when an attached target is scrolled up and invisible when scrolled down.

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