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
Set input type in XML as well as in JAVA file like this,
In XML,
android:inputType="textMultiLine|textCapSentences"
It will also allow multiline and in JAVA file,
edittext.setRawInputType(InputType.TYPE_CLASS_TEXT|InputType.TYPE_TEXT_FLAG_CAP_SENTENCES);
make sure your keyboard's Auto-Capitalization setting is Enabled.