First letter capitalization for EditText

后端 未结 17 2004
傲寒
傲寒 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:05

    I encountered the same problem, just sharing what I found out. Might help you and others...

    Try this on your layout.add the line below in your EditText.

    android:inputType="textCapWords|textCapSentences"
    

    works fine on me.. hope it works also on you...

提交回复
热议问题