I'm working with Titanium studio on an Alloy project. In one of my pages, I would like to have a button with an image inside, an image that would fill the button.
What I'm doing now is :
<Button image="/images/micro.png"/>
It successfully retrieve the image, but it's displayed really small :
I also tried to do the same in JS :
win.add(Ti.UI.createButton({image:"/images/micro.png"}));
But I ended with the same result..
So, is there a way to manage the size of those images?