[TIMOB-7520] Android: Button - setting backgroundImage causes the button not provide visual feedback when it is clicked
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | High |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2012-02-04T02:18:57.000+0000 |
Affected Version/s | Release 1.8.1 |
Fix Version/s | n/a |
Components | Android |
Labels | qe-testadded, regression |
Reporter | Jon Alter |
Assignee | Josh Roesslein |
Created | 2012-02-02T11:11:47.000+0000 |
Updated | 2017-03-10T18:56:07.000+0000 |
Description
Ti.UI.Button does not give feedback that it is being clicked if it has backgroundImage set.
Step 1: add the attached image to your Resources folder
Step 2: run the code below
Step 3: click the button
Step 4: notice that that button does not give any feedback that it is being clicked
var win = Ti.UI.createWindow({backgroundColor:'#fff'});
var share = Ti.UI.createButton({
// title: 'Share',
top: 50,
left: 50,
width: 130,
height: 35,
backgroundImage:'share.png'
});
win.add(share);
win.open();
Closing ticket as the issue will not fix.