我正在制作一个左侧有滑动菜单的应用程序(请参阅http://mobile.tutsplus.com/tutorials/appcelerator/titanium-mobile-create-a-sliding-menu-for-ios/)。我正在尝试为行添加背景,但每次我尝试并启动模拟器时,背景只能看一点,因为由于某种原因,行的标题背后有白色背景。这是代码:
var menuTitles = [
{title: 'Home', backgroundImage: "images/row_BG.png", id: 1},
{title: 'Vestigingen', height: 30, font:{fontSize: 14, fontWeight: "bold", fontFamily: "Helvetica"}},
{title: 'Han Fortmann', backgroundImage: "images/row_BG.png", leftImage: 'images/HF_Logo_@2x.png', id: 2, font:{fontSize: 14, fontWeight: "normal", fontFamily: "Helvetica"}},
{title: 'Johannes B.', leftImage: 'images/JB_Logo_@2x.png', id: 3, font:{fontSize: 14, fontWeight: "normal", fontFamily: "Helvetica"}}
];
答案 0 :(得分:1)
也许您应该使用正确的 Titanium版本来获得更准确的答案。
尽管如此,我认为您正在寻找的答案是 backgroundColor:'transparent'属性。试试这个,它应该工作:
{backgroundColor: 'transparent', title: 'Home', backgroundImage: "images/row_BG.png", id: 1}