org.robobinding.widget.abslistview.ScrollStateChangedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of robobinding Show documentation
Show all versions of robobinding Show documentation
A Presentation Model(MVVM) framework for the Android platform
The newest version!
package org.robobinding.widget.abslistview;
import org.robobinding.widget.view.AbstractViewEvent;
import android.widget.AbsListView;
/**
*
* @author jihunlee
*
*/
public class ScrollStateChangedEvent extends AbstractViewEvent {
private int scrollState;
public ScrollStateChangedEvent(AbsListView view, int scrollState) {
super(view);
this.scrollState = scrollState;
}
public int getScrollState() {
return scrollState;
}
@Override
public AbsListView getView() {
return (AbsListView) super.getView();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy