android:capitalize not working

前端 未结 7 1436
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:19

    android:capitalize is now deprecated.

    Instead of using android:capitalize="words", you should consider using android:inputType="textCapWords".

    Depending on your needs, you can also use multiple values, such as android:inputType="textCapWords|textPersonName".

提交回复
热议问题