NativeScript RadListView 滚动到底部问题

NativeScript RadListView Scroll to bottom issue

我正在使用 RadListView,我正在尝试滚动到列表底部。在 Android 和 iOS 上效果很好,直到我将 header 添加到 RadList。在 Android 上添加 header 后,它会滚动到倒数第二个项目,而不是一直向下滚动。

See playground example here.

我已经更新了 playground here。 如果将其更改为

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

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

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