gpt4 book ai didi

android - VertScrollBox 底部到达android和IOS时检测

转载 作者:行者123 更新时间:2023-11-28 20:57:06 26 4
gpt4 key购买 nike

我在 VertScrollBox1 上有 GridLayout1。垂直滚动框滚动网格布局的内容。我需要检测垂直滚动框何时到达底部,以便将更多内容加载到网格布局。每当再次到达底部时再做一次。

我怎样才能做到这一点?

最佳答案

使用 VertScrollBox1OnViewportPositionChange()。然后一些简单的算术告诉你什么时候在底部:

uses Math, ...;
// ...

procedure TForm1.VertScrollBox1ViewportPositionChange(Sender: TObject;
const OldViewportPosition, NewViewportPosition: TPointF;
const ContentSizeChanged: Boolean);
begin
if CompareValue(NewViewportPosition.Y, GridLayout1.Height - VertScrollBox1.Height) = EqualsValue then
Memo1.Lines.Add('At bottom, time to grow and load more content to the GridLayout');
end;

由于我们比较的值是 float ,所以使用 Math.CompareValue() 进行比较。

或者 函数 SameValue(),也在 Math 单元中

关于android - VertScrollBox 底部到达android和IOS时检测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51118018/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com