Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-12835] BlackBerry: ActivityIndicator sizing and positioning incorrect.

GitHub Issuen/a
TypeSub-task
PriorityHigh
StatusClosed
ResolutionFixed
Resolution Date2013-02-23T10:42:05.000+0000
Affected Version/sn/a
Fix Version/sRelease 3.1.0, 2013 Sprint 04 BB, 2013 Sprint 04
ComponentsBlackBerry
Labelsn/a
ReporterJosh Roesslein
AssigneeJosh Roesslein
Created2013-02-23T10:37:43.000+0000
Updated2017-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.

Comments

  1. Lee Morris 2017-03-08

    Closing ticket as resolved.

JSON Source