Titanium Community Questions & Answer Archive

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

Creating a scrollable view

I'd like to create a view that is scrollable with bars with an image and text (this will be changing the background of the application).

I was unable to find this in the Kitchen Sink app, does anyone know how it's done?

— asked June 2nd 2010 by Joshua Kehn
  • image
  • ipad
  • iphone
  • kitchen
  • scrollable
  • sink
  • view
0 Comments

3 Answers

  • There are 8 scroll view examples on this page.
    They all start with scroll:
    http://github.com/appcelerator/KitchenSink/tree/master/1.3.x/KitchenSink/Resources/examples/

    — answered June 2nd 2010 by Stan Thompson
    permalink
    0 Comments
  • i've also had to create a faux-tableView with a scrollView filled with views ( which contain the images and text ) along with a custom 'separator' bar view in between each.

    rocksteady,
    danno~

    — answered June 3rd 2010 by danno watts
    permalink
    0 Comments
  • There are scroll views examples in Kitchensink

    example:

    ButtonBar_ScrollableView = Titanium.UI.createScrollView({
    contentWidth:ScrollViewWidth,
    contentHeight:50,
    top:0,
    height:50,
    width:'auto',
    borderRadius:10,
    opacity:0.7,
    visible:false,
    backgroundColor:'transparent'
    });

    — answered June 3rd 2010 by Peter Lum
    permalink
    0 Comments
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.