PhoneNumberValidator


Source link: https://github.com/KingsMentor/PhoneNumberValidator

PhoneNumberValidator

To help implement phone number validation before performing any further operation. Convert phone number to phone number with country code and also remove country code from a phone number and automatically get the country of a user. This library helps make sure the number is valid for the selected country.

Adding to your project.

compile 'xyz.belvi.validator:phonenumbervalidator:1.0.0'

Samples

See sample application in project for a brief walk through on how to use the library.

Snippet.

PhoneNumberVerifier numberVerifier = new PhoneNumberVerifier();

Countries can be gotten by:

  • automatically getting the user country
numberVerifier.getUserCountry() 

this returns the users country or null if nothing is found

  • get user country by mc (mobile country code).

This is unique for all country

numberVerifier.getCountryByMnc(621) 

to get mcc in android:

TelephonyManager telephonyManager = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
 String simOperator = telephonyManager.getSimOperator();
 if (!simOperator.isEmpty()) {
 int mcc = Integer.parseInt(String.valueOf(context.getResources().getConfiguration().mcc));
 
}
 
  • phone number

get the country by passing a phone number to the method. This returns a country that allows the phone number format. The phone number should have a country code else, this method would return the default country passed to it.

numberVerifier.getCountryByPhoneNumber(Countries.CANADA, "2348123456789") 
  • by name

returns country by name. Pass a string name of the coutry to get the country

numberVerifier.getCountryByName("Nigeria") 
  • by country code

this returns a list of country as some country shares same country code.

numberVerifier.getCountriesByCountryCode(234) 
  • direct initialisation

calling the country by its value type;

Countries country = PhoneNumberVerifier.Countries.Nigeria;

#Using the PhoneModel Class To check if a number is valid for a country, use the phoneModel class.

PhoneModel model = country.isNumberValid("08012345678");
 

model.isNumberValid() tells if the number is valid or not. If it is valid, you can basically a better formatted version of the number from model.getPhoneNumber(). This is empty when model.isNumberValid() is false;

#Converting Numbers Numbers can be converted to plain number from countrycode number and converted to plain number from counrtycode number (i.e) from 080231**** to +23481231**** or from +23481231**** to 080231****

use country.toPlainNumber(phonenumber) and country.toCountryCodeNumber(phonenumber) to achieve this

#Handling Exception Watch out for the PhoneFormatException. It is thrown when phone contains invalid characters mainly.

License

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

Simple and easy dialog for Android. Instead of using dialog/fragments, normal view will be shown as dialog. It's customizable component and have 3 different content holder.

This is a very simple library for Android that allows you to stick an header to a ListView and easily apply animation to it.

The StikkyHeader supports:

  • ListView
  • RecyclerView
  • ScrollView

A Gradle plugin witch automatically packs texture for a libgdx game, using libgdx texture packer. Before packing, the plugin can do some actions on the resources provided, such as:

  • Resize images for variants
  • Generate 1 pixel 9-patches automatically
  • Convert SVG to PNG images

Gradle tasks for easy integration with ImageMagick.

The code brings up an easy way of using recyclerView, with the new recycler adapters. It also contains a BaseRecyclerFragment and a RecyclerStandalone that removes a lot of boiler plate for fragments that contains either grids or lists. It also offers out of the box a DividerItemDecoration that handles the drawing of the divider in the recycler view. As well selectors for the items in your lists are handled.

RecyclerView-FlexibleDivider - Android library providing simple way to control divider items of RecyclerView.

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