我有一個窗口,它使用了layout: 'horizontal'
,當我添加子視圖時,每個都使用width: '50%'
,這很好,它們都像2階段一樣填充,列表。在滾動視圖中佈置視圖,無法獨立控制佈局和滾動方向
不過,我意識到我需要的內容進行滾動,所以我增加了一個滾動視圖到窗口,並增加了我的孩子欣賞到滾動視圖 - 但沒有奏效。當我在滾動視圖使用layout: 'horizontal'
,它試圖讓水平的滾動內容 - 所有的子視圖是一個行(僅第2上看到UI)。如果我將其更改爲layout: 'vertical'
,它滾動正常,但意見在1列格式佈局(一個位於頂層的另一個)
var deals_window = Titanium.UI.createWindow({
title: 'Deals',
layout: 'horizontal'
});
var scrollView = Ti.UI.createScrollView({
showVerticalScrollIndicator: true,
layout: 'horizontal',
scrollType: 'vertical',
contentWidth: '100%',
contentHeight: 'auto',
width: '100%',
height: 'auto'
});
deals_window.add(scrollView);
我怎樣才能獲得滾動視圖使用「水平」佈局行爲,而垂直滾動...?