[Titanium Mobile] How to Make View Background Transparent
In Titanium Mobile, to make a View’s background color transparent, just set backgroundColor to ‘transparent’ in createView.
var view = Ti.UI.createTableView({ width : 320, backgroundColor : 'transparent', });
That’s all from the Gemba.