- 履歴一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Alloy/Viewを上から縦に並べる へ行く。
- 1 (2013-12-31 (火) 09:21:55)
- 2 (2013-12-31 (火) 09:25:00)
- 3 (2013-12-31 (火) 15:13:36)
キーワード†
- Titanium Mobile
- Alloy
目標†
View を上から縦に並べます。
方法†
- Window.xml
<Alloy> <Window id="window"> <View id="view1"> <Label>View 1</Label> </View> <View id="view2"> <Label>View 2</Label> </View> <View id="view3"> <Label>View 3</Label> </View> </Window> </Alloy>
- Window.tss
'#window': { layout: 'vertical', backgroundColor: '#90EE90', }, '#view1': { height: Ti.UI.SIZE, top: 10, bottom: 10, backgroundColor: 'red', }, '#view2': { height: Ti.UI.SIZE, left: 10, right: 10, backgroundColor: 'red', }, '#view3': { height: Ti.UI.SIZE, backgroundColor: 'red', },
解説†
縦に並べたい要素の親に「layout: 'vertical'」を指定します。HTML で「position: 'relative'」を指定するのとは少し違いますね。