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
Implement ability to specify a tintColor or activeTintColor for tab icons.
TEST CASE
const tabGroup = Ti.UI.createTabGroup({
|
// style: Ti.UI.Android.TABS_STYLE_BOTTOM_NAVIGATION |
});
|
|
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', |
tintColor: 'red', |
activeTintColor: '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', |
tintColor: 'red', |
activeTintColor: 'blue', |
window: tabWin_chat
|
});
|
|
tabGroup.addTab(tab_home);
|
tabGroup.addTab(tab_chat);
|
tabGroup.open();
|
Attachments
Issue Links
- is cloned from
-
TIMOB-27830 Android: TabGroup.titleColor has no effect
-
- Closed
-
- is cloned into
-
TIMOB-27847 iOS: Implement Tab tintColor and activeTintColor
-
- Reopened
-