0
我在 http://docs.appcelerator.com/platform/latest/#!/guide/Alloy_ListView_GuideAppcelerator合金自定義列表視圖項目佈局不起作用?
視圖XML是如下創建以下示例的列表視圖,
<ListView id="elementsList" defaultItemTemplate="elementTemplate">
<Templates>
<ItemTemplate name="elementTemplate">
<Label bindId="symbol" id="symbol" />
<View id="atomProperties">
<Label bindId="name" id="name" />
<View id="secondLine">
<Label class="line2 fieldLabel" text="Number: " />
<Label class="line2" bindId="number" id="number" />
<Label class="line2 fieldLabel" text="Atomic Mass: " />
<Label class="line2" bindId="mass" id="mass" />
</View>
</View>
<ImageView bindId="image" id="image" />
</ItemTemplate>
</Templates>
<ListSection>
<ListItem symbol:text="H" symbol:color="#090" name:text="Hydrogen" number:text="1" mass:text="1.00794"/>
<ListItem symbol:text="He" symbol:color="#090" name:text="Helium" number:text="2" mass:text="4.002602"/>
<ListItem symbol:text="Li" name:text="Lithium" number:text="3" mass:text="6.941"/>
</ListSection>
</ListView>
而TSS是如下,
"#symbol": {
left: 15,
color: "black",
font: { fontSize: 34, fontWeight: 'bold' }
},
"#symbol[platform=android]": {
left: 0
}
"#atomProperties": {
top: 0, left: 80, right: 0, bottom: 0,
layout: "vertical"
},
"#atomProperties[platform=android]": {
left: 65
},
"#name": {
left: 0, top: 4,
color: "black",
textAlign: Ti.UI.TEXT_ALIGNMENT_LEFT,
font: { fontSize: 16 }
},
"#secondLine": {
left: 0, right: 0,
layout: "horizontal"
},
".fieldLabel": {
color:"#999"
},
".line2": {
font: { fontSize: 10 }
},
"#number": {
width: 30,
color: 'red'
},
"#mass": {
color: "blue"
}
我需要添加的權利正確的時間標籤旁邊的名稱,我需要標籤質量也是正確的。所以,我在下面添加名稱
<Label bindId="name" id="name" />
<Label bindId="time" id="time" />
時間標籤,然後我添加了一個TSS
"#time": {
right: 0, top: 4,
color: "black",
textAlign: Ti.UI.TEXT_ALIGNMENT_RIGHT,
font: { fontSize: 12 }
}
時間標籤是右對齊正確,但隨後會出現下面的名字標籤。我如何使它與名稱一樣?
我要標註質量右對齊,所以我將其更改爲
"#mass": {
color: "blue",
right: 0,
textAlign: Ti.UI.TEXT_ALIGNMENT_RIGHT
}
但它不會工作,標籤質量仍然沒有道理的。我如何使其正確?
基本上,我想我的列表視圖項的佈局,看起來像這樣
name time SYMBOL number mass
嗨,我調整你的代碼按建議 ' \t \t \t \t <標籤文本= 「符號」左= 「0」> \t \t \t \t <查看左= 「10」 佈局= 「垂直」> \t \t \t \t <標籤文本= 「名稱」/> \t \t \t \t <標籤頂部= 「5」 文本= 「號碼」/> \t \t \t \t \t \t \t \t <查看左= 「50」 佈局= 「垂直」> \t \t \t \t <標籤文本= 「時間」/> \t \t \t \t <標籤頂部= 「5」 文本= 「質量」/> \t \t \t \t \t \t \t \t ItemTemplate>' 但它仍然沒有工作,這個概念似乎並不正確。看到從下面的Android模擬器捕獲的圖像, !(http://i68.tinypic.com/jzzb79.png) –
Eddi
您的圖像顯示它們仍然垂直堆疊。嘗試在ItemTemplate中插入一個View容器。例如, ... –
嘗試添加視圖容器仍然相同。我想知道如果listview本身是內部佈局爲垂直造成這種行爲? –
Eddi