我的屏幕底部有scrollView
(浅蓝色区域有三角形)
我有滚动此视图的代码:
HorizontalScrollView sv=(HorizontalScrollView)button.getParent().getParent();
int offsetX=getButtonXPosition()-sv.getWidth()/2;
sv.smoothScrollTo(offsetX, 0);
我尝试通过这一行了解view positioning in android
:
sv.smoothScrollTo(offsetX, 0);
有意义吗?它的左上角是坐标(0,0)
否则y coordiante将是!= 0
如果是的话,它适用于任何视图吗?意思是整个定位是相对的
关于整个屏幕,并不是绝对的?