ScrollView和TableVIew都在具有正常滚动效果的Titanium屏幕上

时间:2015-04-23 16:47:00

标签: android uitableview titanium titanium-alloy titanium-android

我有一个Titanium页面,我在这里使用ScrollView和TableVIew。但遇到问题 -

我的ScrollView部分大约是页面的一半,我在下面设置了Tableview,当我在Scrollview上滚动时没有向上滚动(因为它只是屏幕的一半),但是当我滚动TableView时,只有tableview滚动,只在下面的部分滚动。以上(滚动视图部分在其位置保持静态)

我的代码是:

<Alloy>
<Window id="main_window" title="Profile" navTintColor="white" backgroundColor="white" barImage="/images/NavBackground.png" orientationModes="Titanium.UI.PORTRAIT">
    <ScrollView id="scrollable_view" scrollType="vertical" top="0dp" height="89%" contentWidth="100%">
    </ScrollView>
    <TableView id='list_rows' top="auto" height="100%" separatorColor="#CCCCCC" >
    </TableView>
</Window>
</Alloy>

我也尝试在Scrollview中插入TableView,并将tableview的top参数设置为auto和400dp(在我的例子中)。

1 个答案:

答案 0 :(得分:0)

TableView放入ScrollView并停用TableView的滚动功能。