Android Password Strength checker with seekbar

Parth Kathiriya picture Parth Kathiriya · Oct 1, 2015 · Viewed 9k times · Source

How to Create Password Strength checker with seekbar in android ?enter image description here

Answer

Rahul Tiwari picture Rahul Tiwari · Oct 1, 2015
  1. create a rule engine for password strength, may be a simple function which returns strength when you pass a string to it.
  2. use a TextWatcher on your password edit text and pass any string entered through your rules.
  3. Use returned strength value from your rule engine to set progress value and progress color of your progress bar.