implement View.scrollBy()

This commit is contained in:
Julian Winkler 2025-04-09 12:40:09 +02:00
parent 0c0af3d1be
commit 728c43f925

View file

@ -2192,4 +2192,8 @@ public class View implements Drawable.Callback {
public void restoreHierarchyState(SparseArray<Parcelable> container) {}
public boolean isHovered() { return false; }
public void scrollBy(int x, int y) {
scrollTo(scrollX + x, scrollY + y);
}
}