I need a custom implementation of scroll up/down of a ListView, for this I want to use
listView.fireEvent(new ScrollEvent(...))
The problem is that the constructor of the scrollEvent is to complex (http://goo.gl/Dl0cxy), I just need to move x pixeles up or down. How could I use an easy implementation just like
listView.fireEvent(new CustomScrollEvent(x,y))
where x,y are the pixeles I need to move from the current scroll position ? I really dont know all the info asked in the ScrollEvent constructor.