[TIMOB-4296] Android: slider does not work properly when it is rotated
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2011-09-22T14:21:44.000+0000 |
Affected Version/s | Release 1.7.0 |
Fix Version/s | Sprint 2011-33 |
Components | Android |
Labels | android, rotate, slider, transform |
Reporter | Jon Alter |
Assignee | Bill Dawson |
Created | 2011-06-02T11:45:08.000+0000 |
Updated | 2017-03-03T22:32:04.000+0000 |
Description
When you rotate a slider, it seems to stop working. If you tap across the area that the slider would be if it had not been rotated (middle of the the slider), then you will see that it is sliding within the area where the slider would have been. But the rest of the slider seems frozen.
Step 1: run the code below
Step 2: notice that the slider only works if you tap it in the middle
var win = Ti.UI.createWindow({
backgroundColor: 'white'
});
win.add(Ti.UI.createSlider({
min: 0,
max: 100,
width: 200,
transform: Ti.UI.create2DMatrix().rotate(90)
}));
win.open();
Closing ticket.