我們可以製作一個鈦的android android tableview水平滾動。 我想這Titanium android水平滾動tableview
var scrollAlbums = Ti.UI.createScrollView({
bottom : 10,
backgroundColor:'green',
contentHeight : Ti.UI.SIZE, // add this
contentWidth : Ti.UI.SIZE, // change this
height : 95,
layout : 'horizontal',
showHorizontalScrollIndicator : false,
showVerticalScrollIndicator : true, // should be a visual indication if can scroll
scrollType : 'horizontal',
horizontalWrap : false,
width : Ti.UI.FILL // assuming you need it full width - if not specify a width
});
// Create a TableView.
var aTableView = Ti.UI.createTableView({width:1000,backgroundColor:'red',height:200});
請建議我應該是什麼that.Thanks可能的解決方案。
您是否試過Titanium ScrollableView。那個會水平滾動。 – Anand
謝謝阿南德。是的,我嘗試過,但我真正想要的是視圖應該只有一個像我做一個tableview,並定義它的大寬度,並添加在一些水平滾動。有意義的嗎? – Ali