Problem Description
Even if you modify the returnKeyType, it won't work (it will show the arrow symbol always -- shows default --).
Steps to reproduce
1. Create a new mobile Project
2. Paste this as app.js
var win = Ti.UI.createWindow({
backgroundColor : 'white', layout : "vertical"
});
win.open();
var t1 = Ti.UI.createTextArea({
left : 0, right : 0, keyboardType : Ti.UI.KEYBOARD_ASCII, returnKeyType : Ti.UI.RETURNKEY_DEFAULT
});
var t2 = Ti.UI.createTextArea({
left : 0, right : 0, keyboardType : Ti.UI.KEYBOARD_ASCII, returnKeyType : Ti.UI.RETURNKEY_DONE
});
var t3 = Ti.UI.createTextArea({
left : 0, right : 0, keyboardType : Ti.UI.KEYBOARD_ASCII, returnKeyType : Ti.UI.RETURNKEY_GO
});
var t4 = Ti.UI.createTextArea({
left : 0, right : 0, keyboardType : Ti.UI.KEYBOARD_ASCII, returnKeyType : Ti.UI.RETURNKEY_NEXT
});
win.add(t1);
win.add(t2);
win.add(t3);
win.add(t4);
3. Click on any textarea, and you won't see any change.
Extra information
https://developer.appcelerator.com/question/152424/android-display-next-or-done-on-keyboard
Strange to know it works when i tested on Google Android API 2.3.3 But never works with Android API 2.3.3
The google API includes Google Maps and other Google-specific libraries. The Android one only includes core android libraries. Can you please test on actual device? OS 2.2+ would be great in order to get a bug fix quicker. Hope hearing from you soon, Muhammad. Edit: Tested on Razr 2.3.5 with 3.0 SDK Branch
Please test and complete [Jira Checklist](http://docs.appcelerator.com/titanium/latest/#!/guide/How_to_Submit_a_Bug_Report-section-29004732_HowtoSubmitaBugReport-JIRATicketChecklist) with required info.
Will complete the fields and upgrade it.
Tested with 3.2.0 and it works with textField. For textArea, since it can have multiline, Android will show 'return' to enter the carriage return, this is an Android behavior.
Closing ticket as invalid with reference to the above comments.