android - cannot change text size of tabs in a tab group in Titanium -
i have 3 tabs in application. want adjust size of text because if text size more automatically scroll comes in picture.
`var tabgroup = ti.ui.createtabgroup(); var win1 = ti.ui.createwindow({ title : "home page" }); var tab1 = ti.ui.createtab({ icon : "/images/default.png", title : "text size 1", font : { fontfamily : 'helvetica neue', fontsize : 8 }, window : win1 }); tabgroup.addtab(tab1); var win2 = ti.ui.createwindow({ title : "bookmarks page" }); var tab2 = ti.ui.createtab({ title : "text size 2", icon : "/images/default.png", font : { fontfamily : 'helvetica neue', fontsize : 8 }, window : win2 }); tabgroup.addtab(tab2); var win3 = ti.ui.createwindow({ title : "bookmarks page" }); var tab3 = ti.ui.createtab({ title : "text size 3", icon : "/images/default.png", font : { fontfamily : 'helvetica neue', fontsize : 8 }, window : win3 }); tabgroup.addtab(tab3); tabgroup.open();`
can help? in advance
Comments
Post a Comment