Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Medium
-
Resolution: Fixed
-
Affects Version/s: Release 3.0.0
-
Fix Version/s: Release 3.1.0, 2013 Sprint 04 API, 2013 Sprint 04
-
Component/s: Android
-
Labels:
Description
'androidback' does not work with tab groups.
var tabgroup = Ti.UI.createTabGroup({navBarHidden: true});
|
var win1 = Ti.UI.createWindow();
|
var tab1 = Ti.UI.createTab({window: win1, title: 'tab1'});
|
tabgroup.addTab(tab1);
|
tabgroup.open();
|
|
win1.addEventListener('androidback', function() {
|
alert("hello");
|
});
|
Testing steps:
1. Run code
2. Hit back button
3. Alert should pop up, but application closes instead.
Attachments
Issue Links
- is duplicated by
-
AC-2381 android:back doesn't fire on Android/Kindle Fire emulator when placed inside TabGroup
- Closed