Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Medium
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: Release 9.0.3
-
Component/s: Android
-
Labels:None
-
Story Points:3
-
Sprint:2020 Sprint 8, 2020 Sprint 9, 2020 Sprint 10, 2020 Sprint 11, 2020 Sprint 12
Description
Attempting to specify a titleColor or activeTitleColor does not work, the TabGroup defaults to standard system colors.
TEST CASE
const tabGroup = Ti.UI.createTabGroup();
|
|
const tabWin_home = Ti.UI.createWindow({
|
title: 'Home', |
backgroundColor: 'white' |
});
|
const tab_home = Ti.UI.createTab({
|
icon: 'home.png', |
title: 'Home', |
titleColor: 'red', |
activeTitleColor: 'blue', |
window: tabWin_home
|
});
|
|
const tabWin_chat = Ti.UI.createWindow({
|
title: 'Chat', |
backgroundColor: 'white' |
});
|
const tab_chat = Ti.UI.createTab({
|
icon: 'chat.png', |
title: 'Chat', |
titleColor: 'red', |
activeTitleColor: 'blue', |
window: tabWin_chat
|
});
|
|
tabGroup.addTab(tab_home);
|
tabGroup.addTab(tab_chat);
|
tabGroup.open();
|
Attachments
Issue Links
- is cloned into
-
TIMOB-27831 Android: Implement TabGroup.tintColor
-
- Closed
-
- relates to
-
TIMOB-28107 Ti.UI.TabGroup Test Suite: Titanium.UI.TabGroup TIMOB-27830 Android only
-
- Open
-