I solved this by using the same code that was used for the iOS case (which was already in tk2d):Just removed the UNITY_IOS check so it would also run on Android:
#if UNITY_IOS && !UNITY_EDITOR
inputStr = keyboard.text;
if(!inputStr.Equals(text)) {
newText = inputStr;
change = true;
}
#endif