SyntaxFix
Write A Post
Hire A Developer
Questions
Based on the accepted answer, this answer does the same, but in Kotlin. Just to ease copypasting :ยท)
private fun EditText.autocapitalize() { val allCapsFilter = InputFilter.AllCaps() setFilters(getFilters() + allCapsFilter) }