[TIMOB-13995] Android: Button image is not centered
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Open |
Resolution | Unresolved |
Affected Version/s | Release 3.1.0, Release 3.2.0 |
Fix Version/s | n/a |
Components | Android |
Labels | parity |
Reporter | Daniel Sefton |
Assignee | Unknown |
Created | 2013-05-27T10:34:06.000+0000 |
Updated | 2018-02-28T20:03:33.000+0000 |
Description
*Problem*
The image set on a button is not centered on Android. It's centered on iOS.
*Test case*
var win = Ti.UI.createWindow({
title : 'test',
backgroundColor : 'black',
});
var button = Ti.UI.createButton({
backgroundColor : 'orange',
image : 'KS_nav_ui.png',
width : 300,
height : 300
});
win.add(button);
win.open();
Please fix this bug asap. I need it urgently for my university project.