[Titanium Mobile] How to Make View Background Transparent

Tadashi Shigeoka ·  Mon, August 20, 2012

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.