Building a PinEntryEditText in Android
Ali Muzaffar
342

Thank you, this is exactly what i was looking for!

I also needed to change text color, and xml attribute android:textColor didn’t work for this case. So i changed it in PinEntryEditText class this way: getPaint().setColor(Color.WHITE);

Hope it may help someone too.