I am a newbie, and learning Titanium Alloy to make Android App.
I have created an HTML design of a List row, which I want to make in Native Titanium. (The list will have multiple rows)
I saw an example from Titanium Docs, and wrote this but it is giving simple list style.
<Alloy>
<ListView id="list">
<ListSection>
<ListItem title="List item 1"></ListItem>
<ListItem title="List item 2"></ListItem>
<ListItem title="List item 3"></ListItem>
</ListSection>
</ListView>
</Alloy>
Please suggest the way to go forward with the design of my requirement.