Nativescript Swipe无法获得方向

时间:2015-10-27 08:14:04

标签: xml swipe nativescript

我有这些文件来检测滑动的方向。

的xml:

<StackLayout orientation="vertical" swipe="onSwipe">
    <Label id='swiped' text='test' />
</StackLayout>

JS:

function onSwipe(args) { 
    page = args.object;
    var sb = page.getViewById("swiped");
    sb.text  = 'direction'+ args.direction;
}
exports.onSwipe = onSwipe;

我不知道为什么我不能得到args.direction。

1 个答案:

答案 0 :(得分:-1)

您需要在XML声明中启用单元格滚动:swipeCells =“true”

<lv:RadListView items="{{ dataItems }}" swipeCells="true" itemSwipeProgressEnded="{{ onSwipeEnded }}">

以下参考资料是Telerik关于获取x和y方向的教程:http://docs.telerik.com/devtools/nativescript-ui/Controls/ListView/listview-features-swipe-to-execute