Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
private ScrollPanel sPanel = new ScrollPanel();
private ScrollPanel sPanel2 = new ScrollPanel();
sPanel.addScrollListener(new ScrollListener() {
public void onScroll(Widget sender, int x, int y) {
sPanel2.setHorizontalScrollPosition(sPanel.getHorizontalScrollPosition());
sPanel2.setScrollPosition(sPanel.getScrollPosition());
}
});
sPanel2.addScrollListener(new ScrollListener() {
public void onScroll(Widget sender, int x, int y) {
sPanel.setHorizontalScrollPosition(sPanel2.getHorizontalScrollPosition());
sPanel.setScrollPosition(sPanel2.getScrollPosition());
}
});
accScrollListener ist als deprecated angegeben und durchgestrichen.
Was ist denn der aktuelle Lösungsweg?