You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,6 +90,22 @@ I have provided string resources for simpler usage.
90
90
Suppose you want the rounded underline option to be displayed. Then, please add:
91
91
`app:oev_box_style="@string/style_rounded_underline" ` in the OtpEditText xml code.
92
92
93
+
### Masking input characters with Asterisk.
94
+
Functionality to mask the input with any special character has been introduced.
95
+
To mask the input;
96
+
```
97
+
app:oev_mask_input="true"
98
+
```
99
+
xml property must be introduced in the XML layout file.
100
+
101
+
#### Masking with any other special character.
102
+
To mask input with any character other than `*` you can do the following;
103
+
```
104
+
app:oev_mask_character="ø"
105
+
```
106
+
107
+
P.S. Please note that, in case of masking with a special character other than `*`, specify string with length one, otherwise the input string will be truncated to length 1.
108
+
93
109
## For optimum usage; Please note.
94
110
* Specify `android:textSize` according to your needs.
95
111
* Specify `android:padding` according to your needs, there are no paddings drawn by default.
0 commit comments