I have an image.png with dimensions 200x200. I use it as the background image for a button and I set the button size to 60x60.
The button (and its image) appears correctly as intended when I'm not doing anything to it.
When I click the button, the background image dims (as per normal)
However, the background image (sized) of the button does not appear correctly when button is clicked.
Does anyone know what is wrong and how to make the clicked dimmed image remain the same size?
var loginButton = Titanium.UI.createButton({
backgroundImage:'/images/someimage.png',
height: 200 * 0.3,
width: 200 * 0.3,
bottom: 160
left: 65
});
backgroundSelectedImage:'/images/someimage.png'and see if it works for you. – Muhammad Zeeshan Jan 4 at 5:41