Table View Background Image / Color

You must Login before you can answer or comment on any questions.

Hi,

Am trying to remove the background color on my tableview and would like to make it transparent. I can change to another color, but how do I remove the color totally?

Here is my code

tableView = Titanium.UI.createTableView({data:rowData});//, separatorColor:'transparent'});
tableView.backgroundColor = 'blue';

Thanks,

Steve

— asked 11 months ago by Name Surname
1 Comment
  • tableView.backgroundColor = 'transparent';

    — commented 11 months ago by Christian Sigl

1 Answer

Hello, What you can do is setting background color as transparent:

tableView.backgroundColor = 'transparent';

Your Answer

Think you can help? Login to answer this question!