android:capitalize not working

前端 未结 7 1450
Happy的楠姐
Happy的楠姐 2021-02-07 22:16

I have a TextView. I\'m trying to capitalize the first letter in every word.

Here\'s the TextView:

 

        
7条回答
  •  -上瘾入骨i
    2021-02-07 22:31

    capitalize is basically just a KeyListener that you can set in XML, so it only applies to text input by the user. As the documentation states (emphasis mine):

    If set, specifies that this TextView has a textual input method and should automatically capitalize what the user types.

    There is a related question on how to capitalize the first letter of every word in Java which has some helpful answers.

提交回复
热议问题