I need to change the font size of the header label thing in my tableview. I have this right now:
xhr = Ti.Network.createHTTPClient({ onload: function(e) { var response = JSON.parse(this.responseText); for (var i = 0; i < response.length; i++) { var projectTitle = response[i].title; for (var j = 0; j < response[i].vforums.length; j++) { if (j == 0) { projectData.push({ color:'#000', title:response[i].vforums[j].title, hasChild:true, header:projectTitle, vforumLocation:response[i].vforums[j].location }); } else { projectData.push({ color:'#000', title:response[i].vforums[j].title, hasChild:true, vforumLocation:response[i].vforums[j].location }); } } } projectList.data = projectData; projectList.addEventListener('click',rowClick); }, onerror: function(e) { Ti.API.debug(e); alert('error ' + e.error); }, timeout: 5000 });iOS looks good, but android, the text is super small
3 Answers
Accepted Answer
Yess thats an issue ,but to get rid of this create a the lables and add on table rows ,assing the font size to lable according to your requirement.
check the JIRA I am pretty certain that is a known issue
Is there any update on this issue? I'm also running into the same problem and would like to know if this issue has been resolved yet with Titanium or if there is a way to fix it. Please let us know.
Your Answer
Think you can help? Login to answer this question!