Hello all,
I included the android Holo theme in my Alloy application. I really like the theme but I also use Ti.sq: Link to Ti.sq calendar widget
But the holo theme overrides some colors of the calendar items, I don't want that. I create the calendar as following:
var square = require('ti.sq'); var calendarView = square.createView({ height:Ti.UI.FILL, width:Ti.UI.FILL, pagingEnabled:true, //Always true on Android devices value: currentDate, min: minDate, max: maxDate, selectedDates: [ {month:4,day:17,year:2014}, {month:4,day:18,year:2014}, {month:4,day:26,year:2014}, {month:4,day:23,year:2014} ] });How can I say that the calendar has to use the default theme and not the Holo theme?
Thanks in advance!
- Jason