Tapping "Next" on soft keyboard to go to the next textfield dismisses the keyboard automatically. However this behavior is not present on 3.0.0.GA
This issue is also present if you select any other textfield that is not focused.
var win = Ti.UI.createWindow({
height: Ti.UI.FILL,
width: Ti.UI.FILL,
backgroundColor: "#FFF",
exitOnClose: true,
fullscreen: false,
});
var wrapper = Ti.UI.createView({
width: '100%',
height: '100%',
backgroundColor: '#CCC',
})
var textField1 = Ti.UI.createTextField({
width: 200,
height: Ti.UI.SIZE,
top: 100,
});
var textField2 = Ti.UI.createTextField({
width: 200,
height: Ti.UI.SIZE,
top: 150,
});
wrapper.add(textField1);
wrapper.add(textField2);
win.add(wrapper);
win.open();
Current workaround is to add the property softKeyboardOnFocus = Ti.UI.Android.SOFT_KEYBOARD_SHOW_ON_FOCUS to the textfield.
Reproducible with: Titanium Studio, build: 3.0.3.201302201202 Titanium SDK, build: 3.1.0.v20130312161655 Device: Nexus7 Android version: 4.2
Reproducible with: Tested with: SDK: 3.1.0.v20130403114957 Studio:3.1.0.201304011603 Device: LG-p970(v 2.2.2)
This is a behavior change caused by TIMOB-6367. A possible workaround is as suggested, set softKeyboardOnFocus to Ti.UI.Android.SOFT_KEYBOARD_SHOW_ON_FOCUS. Closing as won't fix.
Closing ticket as Won't Fix with reference to the above comments.