android:capitalize not working

前端 未结 7 1447
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条回答
  •  无人及你
    2021-02-07 22:18

    android:capitalize is deprecated on ICS, so I guess it should be better to do it in code (i.e. with String.toUpperCase())

    Another try could be

     android:inputType="textCapWords"
    

    but I guess it would require an EditText to work.

    I don't know if this is the reason for your code, what version are you targeting?

提交回复
热议问题