Masked-Edittext


Source link: https://github.com/pinball83/Masked-Edittext

Masked-Edittext

Masked-Edittext android library EditText widget wrapper add masking and formatting input text functionality.

![Image phone number formatted input] ( http://g.recordit.co/ROo3bzrX7k.gif)

![Image card number formatted input] ( http://g.recordit.co/B8IuMTrsYi.gif)

Install

##Maven

<dependency>
<groupId>com.github.pinball83</groupId>
<artifactId>masked-edittext</artifactId>
<version>1.0.3</version>
<type>aar</type> </dependency> 

##Gradle

compile 'com.github.pinball83:masked-edittext:1.0.3' 

#Usage ###Quick start You can choose using this widget thought declaring it in layout resource xml

<com.github.pinball83.maskededittext.MaskedEditText

  android:id="@+id/masked_edit_text"

  android:layout_width="match_parent"

  android:layout_height="wrap_content"

  android:inputType="number"

  app:mask="8 (***) *** **-**"

  app:notMaskedSymbol="*"

  app:maskIcon="@drawable/abc_ic_clear_mtrl_alpha"

  app:maskIconColor="@color/colorPrimary"

  /> 

or programmatically create in source file

MaskedEditText maskedEditText = new MaskedEditText(this,

  "8 (***) *** **-**",

  "*",

  getResources().getDrawable(R.drawable.ic_account_circle),

  new MaskedEditText.MaskIconCallback() {

@Override

public void onIconPushed() {

 System.out.println("Icon pushed");

 //Invoke here contact list or just clear input

}

  
}
);
 

###Attributes
MaskedEditText have following attributes

####XML ... app:mask = "8 (** ) *** -" //mask app:notMaskedSymbol = "" //symbol for mapping allowed placeholders app:replacementChar = "#" //symbol which will be replaced notMasked symbol e.g. 8 (***) *** - will be 8 (###) ### ##-## by default it assign to whitespace app:deleteChar = "#" //symbol which will be replaced after deleting by default it assign to whitespace app:format = "[1][2][3] [4][5][6]-[7][8]-[10][9]" //set format of returned data input into MaskedEditText app:maskIcon = "@drawable/abc_ic_clear_mtrl_alpha" //icon for additional functionality clean input or invoke additional screens app:maskIconColor = "@color/colorPrimary" //icon tint color ...

####Java Simple instance

MaskedEditText editText = new MaskedEditText(context, "8 (***) *** **-**", "*");
 //set mask to "8 (***) *** **-**" and not masked symbol to "*" 

text setup and formatting

editText.setMaskedText("5551235567");

//set text into widget it will be look like 8 (555) 123 55-67 editText.setFormat("[1][2][3] [4][5][6]-[7][8]-[10][9]");
 //set format of returned data input into MaskedEditText e.g editText.getUnmaskedText() return 8 (555) 123 55-76 

Widget instance with mask, icon button and callback

MaskedEditText maskedEditText = new MaskedEditText(this,

 "8 (***) *** **-**",

 "*",

 getResources().getDrawable(R.drawable.ic_account_circle),

 new MaskedEditText.MaskIconCallback() {

  @Override

  public void onIconPushed() {

System.out.println("Icon pushed");

  
}

 
}
);
 

Getting text

maskedEditText.getUnmaskedText() //return unmasked text maskedEditText.getText()

//return mask and text 

Resources

Android dual-cache library provides a cache with 2 layers: one cache in RAM and another on local storage.

Custom Implementation of typical gesture of pulling a listing on iOS but Android replicated.

Nucleus is an Android library which helps to use the Model-View-Presenter pattern.

MicroBus is inspired by OttoBus, and it has its stronger and weaker points.

Advantages:

Disadvantages:

  • This is a one-thread solution.
  • Usage requires a little more code.

Android Drawable Importer Plugin.

Custom dialog view like a loader with circular progress bar animation.

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