Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-12677] Blackberry : Activity Indicator: The view or window on which the activity indicator is placed sticks to the dimensions of the indicator rather than displaying fullscreen

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionFixed
Resolution Date2013-02-23T10:20:20.000+0000
Affected Version/sn/a
Fix Version/sRelease 3.1.0
ComponentsBlackBerry
Labelsqe-testadded, sdk-bb
ReporterLokesh Choudhary
AssigneeJosh Roesslein
Created2013-02-12T18:15:07.000+0000
Updated2014-06-19T12:43:10.000+0000

Description

Description: 1.Run the code below on BB 10 simulator/device

var win2 = Ti.UI.createWindow({
  backgroundColor: 'yellow',
  fullscreen: true,
  top:0,
  left:10
});


var activityIndicator = Ti.UI.createActivityIndicator({
  color: 'green',
  font: {fontSize:16},
  top:10,
  left:50,
  height:40,
  width:40
});

win2.add(activityIndicator);
activityIndicator.show();

win2.open();
2.Observe the app after it launches Actual Result: 1.The view or window(in this case) kind of sticks to the dimensions of the activity indicator rather than being displayed fullscreen Expected Result: 1.The view should be displayed fullscreen with the activity indicator on it Screenshot attached for reference

Attachments

FileDateSize
Screen Shot 2013-02-11 at 2.28.52 PM.png2013-02-12T18:15:07.000+000043291

Comments

  1. Josh Roesslein 2013-02-23

    This should be fixed in master now. Windows should always fill the entire screen.
  2. Lokesh Choudhary 2013-02-25

    Verified the fix & it is working as it should.Thus closing. Environment: Ti Studio : 3.1.0.201302221817 Ti BB SDK : 3.1.0.v20130225112338 Mac OSX : 10.8.2 win 7 Win 8 BB simulator : 10.0.10.261 Dev alpha B 10 device

JSON Source