[TIMOB-12835] BlackBerry: ActivityIndicator sizing and positioning incorrect.
| GitHub Issue | n/a |
|---|---|
| Type | Sub-task |
| Priority | High |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2013-02-23T10:42:05.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | Release 3.1.0, 2013 Sprint 04 BB, 2013 Sprint 04 |
| Components | BlackBerry |
| Labels | n/a |
| Reporter | Josh Roesslein |
| Assignee | Josh Roesslein |
| Created | 2013-02-23T10:37:43.000+0000 |
| Updated | 2017-03-08T18:27:27.000+0000 |
Description
The sizing and positioning of indicators isn't correct.
They always appears small and don't get properly laid out in their parent.
Test Case
var win = Ti.UI.createWindow();
var ind_absolute = Ti.UI.createActivityIndicator({
width: 100, height: 100,
top: 5
});
win.add(ind_absolute);
ind_absolute.show();
var ind_auto = Ti.UI.createActivityIndicator();
win.add(ind_auto);
ind_auto.show();
win.open();
Expected: Should see two indicators. One should be near the top and large.
The second indicator should be near the middle and smaller in size.
Closing ticket as resolved.