Skip to content

Instantly share code, notes, and snippets.

@bherbst
Last active May 21, 2018 17:48
Show Gist options
  • Save bherbst/1d68a38a2201ea3ea1d508a63a714763 to your computer and use it in GitHub Desktop.
Save bherbst/1d68a38a2201ea3ea1d508a63a714763 to your computer and use it in GitHub Desktop.
Intercepting Autofill
class AutofillEditText : TextInputEditText {
@TargetApi(Build.VERSION_CODES.O)
override fun autofill(value: AutofillValue) {
val autofilledText = value.textValue
val processedText = sanitize(autofilledText)
super.autofill(AutofillValue.forText(processedText))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment