Where does Android View.scrollTo(x, y) scroll to?
问题 scrollTo(int x, int y) says: x the x position to scroll to y the y position to scroll to onScrollChanged(int l, int t, int oldl, int oldt) says: l Current horizontal scroll origin. t Current vertical scroll origin. What I would like to know and can\'t find anywhere, is where is x,y? Top left? Center? I tried a few tests and can\'t figure it out. 回答1: After extensive research and testing I've finally understood how scrollTo() works. (0,0) are the coordinates to the top left corner of the View