PinEntryEditText


Source link: https://github.com/alphamu/PinEntryEditText

PinEntryEditText for Android

This repository contains PinEntryEditText which extends the behaviour of EditText and implement features that are otherwise not available.

Features

PinEntryEditText

  • Number of pin characters is configurable. You can use the maxLength property to define however long you want your pin to be.
  • PinEntryEditText which supports text animating in.
  • Lets you specify any unicode character to be used as a mask for input.
  • Specify drawable as the foreground/background.

Usage

Below is a fast guide to getting started. However, if you need to read about these widgets in details. Read more about PinEntryEditText.

STEP-1

Gradle

dependencies {

  compile 'com.alimuzaffar.lib:pinentryedittext:1.3.1' 
}
 

STEP-2

Setup PinEntryEditText in your layout

<com.alimuzaffar.lib.pin.PinEntryEditText
  android:id="@+id/txt_pin_entry"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:cursorVisible="false" //recommended
  android:digits="1234567890"
  android:inputType="number"
  android:maxLength="4" //required
  android:textIsSelectable="false" //recommended
  android:textSize="20sp"
  app:pinBackgroundDrawable="@drawable/bg_pin" //optional, use your own pin char background
  app:pinAnimationType="popIn|fromBottom|none" //optional, default popIn  app:pinCharacterMask="*" //optional, default bullet  app:pinSingleCharHint="#" //optional, hint for each characters  app:pinTextBottomPadding="@dimen/space" //optional, space between character and bottom line.  app:pinLineStroke="2dp" //the stroke (height) of the bottom line by default.  app:pinLineStrokeSelected="4dp" //the stroke (height) of the bottom line when field is focused.  app:pinBackgroundIsSquare="true|false" //optional, if you want the background drawable to be a square or circle width of each digit will be set to match the height of the widget.
  app:pinLineColors="@color/pin_line_colors" /> //optional

Listen for pin entry

final PinEntryEditText pinEntry = (PinEntryEditText) findViewById(R.id.txt_pin_entry);
 if (pinEntry != null) {

  pinEntry.setOnPinEnteredListener(new PinEntryEditText.OnPinEnteredListener() {

@Override

public void onPinEntered(CharSequence str) {

 if (str.toString().equals("1234")) {

  Toast.makeText(AnimatedEditTextWidgetsActivity.this, "SUCCESS", Toast.LENGTH_SHORT).show();

 
}
 else {

  Toast.makeText(AnimatedEditTextWidgetsActivity.this, "FAIL", Toast.LENGTH_SHORT).show();

  pinEntry.setText(null);

 
}

}

  
}
);
 
}

Use your own Drawable as a pin character background

You can use your own drawable for the pin entry background by specifying the app:pinBackgroundDrawable attribute in the xml. If you want to specify the empty and filled states using your background drawable you can set the textColor to transparent and setup your drawable as follows:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <!-- Space contains text -->
  <item android:state_focused="true" android:state_checked="true">

<shape android:shape="rectangle">

 <solid android:color="@android:color/holo_green_light"/>

</shape>
  </item>
  <!--Space is the next space for character input -->
  <item android:state_focused="true" android:state_selected="true">

<shape android:shape="rectangle">

 <solid android:color="@android:color/holo_blue_bright"/>

</shape>
  </item>
  <!-- PinEntryEditText is focused -->
  <item android:state_focused="true">

<shape android:shape="rectangle">

 <solid android:color="@android:color/white"/>

</shape>
  </item>
  <!-- PinEntryEditText is not focused -->
  <item>

<shape android:shape="rectangle">

 <solid android:color="@android:color/darker_gray"/>

</shape>
  </item> </selector>

Note that in this setup, the size of the drawable will be determined by the textSize and and the pinTextBottomPadding which is the space between the character and the line below (or the bottom of the pinBackgroundDrawable). For good measure, set pinAnimationType to none as well.

Effects :

  1. PopIn (default)
  2. Bottom Up

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

Traceur enables easier debugging of RxJava2 exceptions, by appending the source of any asynchronous calls to the original exception.

Lyra is a library that can save and restore the state of Android components easily through annotations. It will replace all the boilerplate code from onSaveInstanceState() to save and restore the state of your variables.

An user-friendly numerical input interface. It can easily be customized and is built to be used on Android-TV as well.

This library support nested scroll for refresh and load more, so you can use it with CoordinatorLayout and AppBarLayout and so no..

BackStack is a light weight android navigation library for view based navigation. It supports animations and multiple multipage containers like bottom bars and view pagers.

Custom Layout Manager for Recycler View which lays out its child views in circular or elliptical fashion

Scroll Wheel functionality implemented with Circular Relative Layout

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