使用appcelerator中的模板向listview添加元素

使用appcelerator中的模板向listview添加元素,listview,appcelerator,Listview,Appcelerator,这是我的.xml文件,用于使用appcelerator中的模板创建listview并在其中添加元素。如何设置.tss文件中列表项内容的样式。例如,我希望图像在最左边,标题在下面的中间,这是日期和URL。< /P> <Alloy> <Window id="win2" class="container"> <View id = "v1" class ="view1" layout ="horizontal" >

这是我的.xml文件,用于使用appcelerator中的模板创建listview并在其中添加元素。如何设置.tss文件中列表项内容的样式。例如,我希望图像在最左边,标题在下面的中间,这是日期和URL。< /P>
    <Alloy>
        <Window id="win2" class="container">
            <View id = "v1" class ="view1"  layout ="horizontal" >
                <Button class="btnBack" ></Button>
                <Label  class = "label1">List</Label>
            </View>
            <View class="view2">
                <TextField id = "txtSearch"></TextField>
            </View>
            <ListView id = "lView" class = "list1" >
                <Templates>
                    <ItemTemplate name="template">
                        <ImageView bindId="pic" id="iconId" />
                        <Label bindId="info" id="titleId" />
                        <Label bindId="date" id="dateId" />
                        <Label bindId="url" id ="urlId" /> 
                    </ItemTemplate>
                </Templates>
<ListSection>
                        <ListItem pic:image="/Images/abstract-logo-with-colorful-leaves_1025-695.jpg" info:text ="This is the title" date:text= "6/30/2017" url:tex ="https://youtu.be/zkOSR0ZRb9k"></ListItem>
                    </ListSection>
            </ListView>

        </Window>
    </Alloy>

列表

使用对象的ID来放置/设置项目样式。例如,在您的tss中:

"#iconId" : {left : 5},
"#titleId" : {left: 100},
"#dateId" : {left: 100},
"#urlId" : {left: 100}
您可以根据需要进行调整。

请参阅中的Alloy XML标记部分。并注意示例
index.tss
如何通过其
id
引用ItemTemplate中的每个控件。这里的示例非常接近您要实现的目标:

"#icon" : {
  width: '50dp', height: '50dp', left: 0
},
"#title" : {
  color: 'black',
  font: { fontFamily:'Arial', fontSize: '20dp', fontWeight:'bold' },
  left: '60dp', top: 0
},
"#subtitle" : {
  color: 'gray',
  font: { fontFamily:'Arial', fontSize: '14dp' },
  left: '60dp', top: '25dp'
}