Version: 1.3.2 ChangeLog Bug datagrid: The loading message window can not be centered when changing the width of datagrid. fixed. treegrid: The 'mergeCells' method can not work normally. fixed. propertygrid: Calling 'endEdit' method to stop editing
在一个View中,系统提供了scrollTo、scrollBy两种方式来改变一个View的位置。这两个方法的区别非常好理解,与英文中To与By的区别类似,scrollTo(x, y)标识移动到一个具体的坐标点(x, y),而scrollBy(dx, dy)表示移动的增量为dx、dy。
在获取偏移量后使用scrollBy来移动View,代码如下所示:
int offsetX = x - lastX;
int offsetY = y - lastY;
scrollBy(offsetX, offse