Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-16827] Android: tabGroup icons hidden with navBarHidden set to true

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionFixed
Resolution Date2014-08-29T06:23:21.000+0000
Affected Version/sRelease 3.2.2
Fix Version/sRelease 3.3.0, Release 3.4.0
ComponentsAndroid
Labelsandroid, icons, module_tabgroup, qe-testadded, tabgroup
Reporterjordann lahache
AssigneeIngo Muschenetz
Created2014-04-07T15:12:02.000+0000
Updated2014-10-13T22:49:19.000+0000

Description

Hello, When i set the property navBarHidden of the tabGroup at true, the icons of the tabs disappear. Illustration : http://i.imgur.com/mw6I0yB.jpg Original topic : http://developer.appcelerator.com/question/164313/tabgroup-icons-hidden-if-navbarhiddentrue

Comments

  1. Ritu Agrawal 2014-04-08

    Moving this ticket to engineering as I can reproduce the issue with the following test case. Icons show up correctly in the tab group if navBarHidden is set to false but do not otherwise.
       var self = Ti.UI.createTabGroup({
           exitOnClose:false,
           navBarHidden:true   
       });
        
       //create app tabs
       var win1 = Ti.UI.createWindow();
       var win2 = Ti.UI.createWindow();
        
       var tab1 = Ti.UI.createTab({
           title: "Home",
           icon: '/images/KS_nav_ui.png',
           window: win1
       });
        
       var tab2 = Titanium.UI.createTab({  
           title: "Acc", 
           icon: '/images/KS_nav_ui.png', 
           window:win2
       });  
        
       self.addTab(tab1);
       self.addTab(tab2);
        
       self.open();
       
  2. jithinpv 2014-08-29

    Issue reproduces in Titanium SDK version 3.2.3.GA, 3.2.2.GA works fine in Titanium SDK version 3.4.0 master, 3.3.0.GA Titanium Studio, build: 3.3.0.201407100905 Titanium Command-Line Interface CLI version 3.3.0, Android device : Motorola Moto G, Android version : 4.4.4
  3. Lokesh Choudhary 2014-09-03

    Verified the issue does not exist in 3.3.0.GA & 3.4.0.v20140829184521. Closing. Environment: Appc Studio : 3.4.0.201408291834 Ti SDK : 3.4.0.v20140829184521 Mac OSX : 10.9.4 Alloy : 1.5.0-dev CLI - 3.4.0-dev Code Processor: 1.1.1 Nexus 5 - android 4.4.4 Nexus - android 4.2.2

JSON Source