[TIMOB-9782] Android: View:Pinch action is not very smooth on android 2.2
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Invalid |
Resolution Date | 2017-07-10T22:02:52.000+0000 |
Affected Version/s | Release 2.1.0 |
Fix Version/s | n/a |
Components | Android |
Labels | api, qe-and060112, qe-nfc |
Reporter | Shyam Bhadauria |
Assignee | Eric Merriman |
Created | 2012-06-25T04:12:17.000+0000 |
Updated | 2017-07-10T22:02:52.000+0000 |
Description
Feature not supported in 2.0.2.
Steps to reproduce:
1) Use the code below
var win = Titanium.UI.createWindow();
win.backgroundColor = '#fff';
var view = Ti.UI.createView({
height: 250,
width: 250,
backgroundColor: '#a00'
});
view.addEventListener('pinch', function(e) {
view.height = baseHeight * e.scale;
view.width = baseWidth * e.scale;
});
view.addEventListener('touchstart', function(e) {
baseHeight = view.height;
baseWidth = view.width;
});
win.add(view);
win.open();
2) Run the app
3) Pinch the displayed red view.
Expected result:
3) After step 3, the view should respond to the pinch action smoothly.
Actual result:
3) After step 3, the view do not responds to pinch action smoothly. After many tries, it resizes abruptly,allowing very little control to the user.
Closing ticket due to time passed and lack of progress for a number of years. Please open a new ticket if there are any problems.