NativeScript RadListView滚动到底部问题

问题描述 投票:0回答:1

我正在使用RadListView,我试图滚动到列表的底部。它在Android和iOS上运行良好,直到我向RadList添加标头。一旦我在Android上添加标题,它将滚动到第二个到最后一个项目,而不是一直向下。

See playground example here.

nativescript angular2-nativescript nativescript-angular nativescript-telerik-ui
1个回答
1
投票

我更新了操场here。如果你改成它

this.radList.scrollToIndex(this._dataItems.length - 1, false, ListViewItemSnapMode.Auto);

要么

this.radList.scrollToIndex(this._dataItems.length - 1, false);

它在android和ios上运行良好。 ListViewItemSnapMode.Auto:目标项目在最近的位置捕捉​​,使其清晰可见。

© www.soinside.com 2019 - 2024. All rights reserved.