First letter capitalization for EditText

后端 未结 17 2023
傲寒
傲寒 2020-11-28 01:11

I\'m working on a little personal todo list app and so far everything has been working quite well. There is one little quirk I\'d like to figure out. Whenever I go to add a

17条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-28 02:04

    Apply following line in your EditText in XML.

    android:inputType="textCapSentences|textMultiLine"
    

    It will also allow multi-line support.

提交回复
热议问题