[TIMOB-27529] iOS: Scale of remote image seems to be way of compared to Android
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | None |
Status | Open |
Resolution | Unresolved |
Affected Version/s | Release 8.1.0, Release 8.3.0 |
Fix Version/s | n/a |
Components | Android, iOS |
Labels | engSchedule |
Reporter | Samir Mohammed |
Assignee | Unknown |
Created | 2019-11-06T15:02:04.000+0000 |
Updated | 2019-12-02T22:57:22.000+0000 |
Description
When using the test case below on iOS (iPhone 6 12.4 sim) and Android (Google Pixel 7.1.1 emulator) It seems to have different results as the image on iOS by default starts of zoomed in.
!Screenshot 2019-11-06 at 14.48.13.png|thumbnail!
*Test Case:*
var detailWindow = Titanium.UI.createWindow({
backgroundColor : '#fff'
});
var detailScrollView = Ti.UI.createScrollView({
layout : 'vertical'
});
var imageView = Ti.UI.createImageView({
image : "https://s3.amazonaws.com/static.tumblr.com/6t3upxl/Aawm08w0l/khout-kitten-458882.jpeg",
top : '10dp'
});
detailScrollView.add(imageView);
detailWindow.add(detailScrollView);
detailWindow.open();
*Test Steps:*
Create a Titanium application
Add the code above in to the ((app.js}}
Run on Android
Run on iOS
Compare results
Attachments
File | Date | Size |
---|---|---|
Screenshot 2019-11-06 at 14.48.13.png | 2019-11-06T15:01:56.000+0000 | 2302315 |
No comments