Hi Every body,
I have one issue QToolbutton image is not displaying however functionality is intact.
I'm trying to apply stylesheet for QToolButton through xml file. Below i've posted the xml snippet. its working fine for windows simulator. but not working for linux/android. Please help me.From code I have checked it seems find from coding.Icons are available in the following location.I have already tried following things.(Note:This is only UI problem from functionality it works fine).This is an inline-delete button.

1.I have replaced with some other working images which is already visible in some other places.(but here it is not visible)
2.Change from .png image to some .svg image.
3.Change background.
4.Added background color.
5.Added background image.
6.The buttons which are not QToolButton and created with some customization picks the image from the same location.

After analyze these things I am suspecting that somehow QToolButton does not pickup the image or the syntax is not proper.I am using QT 5.
Any help would be highly appreciated.

QToolButton
{
background: transparent;
border: none;
image: url(Skins/lea/fb/delete_all_icon.png);
}
QToolButtonressed
{
background: transparent;
border: none;
image: url(Skins/lea/fb/delete_all_icon_touch.png);
}