Displaying Password Strength
•
While I personally wish there was OAuth everywhere, most apps still require a password somewhere. So while building this sign up page you might just want to give your user a hint about the strength of their chosen password, whether you validate it or not.
Dropbox released a neat library zxcvbn which gives good feedback about the strength of a password. The Java port is called zxcvbn4j, which I will be using.
Setup
To keep this all short and sweet I’ll make use of Java 8 Lambda expressions (I prefer retrolambda over Jack) and RxJava. I also include RxBinding because it takes some additional work off when you try to observe Android components.
To your build.gradle
add the following:
Again, I want to keep it simple, so the layout consists only of the password field and a ProgressBar, which has a level from 0 to 4, depending on the password strength.
Let’s do this
The code itself should be pretty straightforward. We start by looking up our components, and then just listen to changes on the password input.
Whenever the password changes, we switch to a computation thread (zxcvbn will take some time) and update the ProgressBar with the result. And onBackpressureLatest
is necessary when events get created faster than they can be handled.
A step by step explanation follows.
And that’s it—with just a couple lines of code.
In case some things are not completely clear, check the following explanations.
RxTextView
is part of RxAndroid and will create an Observable that will emit all the events you could alternatively fetch with a TextWatcher. e.g. it will emit the current password every time the user types a key.
onBackpressureLatest
might seem the most confusing, but just go ahead and try to remove it. If you type really long passwords, zxcvbn will take quite some time, even on good phones, and you will encounter a MissingBackpressureException
. To prevent this from happening, we drop events that we can’t handle and only pass the latest to zxcvbn when it is done processing the previous one. Backpressure is a difficult topic by itself, but in this case adding that operator is all that needs to be done.
We switch threads to computation and back to the main thread, so that the UI remains responsive and does not lag.