Titanium Community Questions & Answer Archive

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

How can I get image like that?

Check this image of an iphone app. How could I get similar image after each row by using Table View?

Thanks

— asked September 17th 2010 by Adnan Ahmad
  • iphone
  • tableview
0 Comments

4 Answers

  • Adnan, could you add the image or link to it?

    — answered September 17th 2010 by Jean-Etienne LaVallee
    permalink
    0 Comments
  • If you simply want an image on the right side of a row, use the rightImage property:

    var row = Titanium.UI.createTableViewRow({
        title: 'Awesome Row!',
        rightImage: 'images/awesome.png'
    });
    
    — answered September 18th 2010 by Matt Bell
    permalink
    0 Comments
  • If you simply want an image on the right side of a row, use the rightImage property:

    var row = Titanium.UI.createTableViewRow({
        title: 'Awesome Row!',
        rightImage: 'images/awesome.png'
    });
    
    — answered September 18th 2010 by Matt Bell
    permalink
    0 Comments
  • If you simply want an image on the right side of a row, use the rightImage property:

    var row = Titanium.UI.createTableViewRow({
        title: 'Awesome Row!',
        rightImage: 'images/awesome.png'
    });
    
    — answered September 18th 2010 by Matt Bell
    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.