I found I cannot save a new record (item) in the Android ToDo demo. The reason is because the keyboard that popups up on my phone doesn’t have an enter/go button and thus the listener to save the record cannot be invoked. See the attached screenshot for what my keyboard looks like. I’m running Cyanogen Mod Android 4.4 using the Swype keyboard app. The easy fix is to remove “textShortMessage” from line 35 of res/layout-nodpi/header.xml
from:
android:inputType="textShortMessage|textCapSentences|textAutoComplete|textAutoCorrect"
to:
android:inputType="textCapSentences|textAutoComplete|textAutoCorrect"