我需要向Titanium.UI.tabGroup
添加5个标签栏图像,但我无法弄清楚如何实现透明背景。
我在创建标签组时尝试了不同的属性,但没有任何作用:
this.myTabGroup = Titanium.UI.createTabGroup({
opacity: 0, // NOT WORKING
backgroundColor: 'transparent', // NOT WORKING
barImage: null // NOT WORKING
});
答案 0 :(得分:1)
最后,我找到了答案!
使用以下选项解决了问题:
this.myTabGroup = Titanium.UI.createTabGroup({
tabsBackgroundColor : 'transparent',
includeOpaqueBars : true,
translucent : false
});