Steps to reproduce:
1. Use the code below in your app.js:
var win = Ti.UI.createWindow();
var textArea = Ti.UI.createTextArea({
value: 'TextArea',
top: '20%',
height: '30%',
left: '10%',
right: '10%'
});
textArea.addEventListener('return', function() {
alert('return event fired');
});
win.add(textArea);
win.open();
2. Build for android device.
3. After the app launches, click to focus the textarea.
4. Hit the return key.
Actual result:
1. You will get two alerts "return event fired".
Expected result:
1. You should get only one return event & one alert.
master: https://github.com/appcelerator/titanium_mobile/pull/9652
-FR Passed.- -Waiting for merge to be enabled.-
7_0_X: https://github.com/appcelerator/titanium_mobile/pull/9653
FR Passed. Waiting for merge to be enabled.
Backport 7.0.0 PR merged.
Cleaning up older fixed issues. If this issue should not have been closed as fixed, please reopen.