How to capitalize the first letter of text in a TextView in an Android Application

前端 未结 11 1757
孤街浪徒
孤街浪徒 2020-12-23 15:35

I\'m not referring to textInput, either. I mean that once you have static text in a TextView (populated from a Database call to user inputted data (that may not be Capitaliz

11条回答
  •  攒了一身酷
    2020-12-23 16:13

    For Kotlin, if you want to be sure that the format is "Aaaaaaaaa" you can use :

    myString.toLowerCase(Locale.getDefault()).capitalize()
    

提交回复
热议问题