Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 812 Bytes

File metadata and controls

10 lines (7 loc) · 812 Bytes

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.")