Titanium Community Questions & Answer Archive

We felt that 6+ years of knowledge should not die so this is the Titanium Community Questions & Answer Archive

Scrolling ScrollableView on iPad (problem with fullscreen)

Bug report:

  1. Add window

var win = Titanium.UI.createWindow({
top: 0,
left: 0,
width: 1024,
height: 768,
fullscreen: true
});

win.orientationModes = [
Titanium.UI.LANDSCAPE_LEFT
];

  1. Add ScrollableView (also 1024x764)
  2. Add several ImageViews (same size as above)

Scrolling becomes difficult: on most pages only left half of the iPad screen reacts, when you try to scroll using right half nothing happens.

After removing fullscreen: true everything is ok.

— asked September 14th 2010 by Marcin Jagodzinski
  • ipad
  • scrollable
  • view
1 Comment
  • I have the same problem, does someone knows the solution?

    — commented November 1st 2012 by Erik Daniel Rodriguez Zepeda

1 Answer

  • Make sure you have no split view on the window.

    Maybe try changing your Height and Width, cause it seems you have the UI set to LANDSCAPE_LEFT which might cause the height & width to become landscaped aswell?

    — answered September 14th 2010 by Colton Arabsky
    permalink
    1 Comment
    • I don't have split view. The weird thing is that if fullscreen is false (system bar is visible) everything works perfectly

      — commented September 14th 2010 by Marcin Jagodzinski
The ownership of individual contributions to this community generated content is retained by the authors of their contributions.
All trademarks remain the property of the respective owner.