Input instructions - Android
On Android, you can use a TextView
to show instructions.
You can also use a TextInputLayout
, which contains a setHelperText
method to provide instructions. To show instructions, you need to set setHelperTextEnabled
to true
.
input.setHelperTextEnabled(true)
input.setHelperText("Your password should be at least 8 characters.")