I'm using a SlidingDrawer for a lock screen. My problem is the handler closed when I drag to the middle of the slidindrawer. I want it only keep closed when I drag to be closed. In all other cases the handler must be animate to open. I'm trying to handler:
public void onScrollEnded() {
if (!slide.isOpened())
slide.open();
}
It opens but after this, it continues with de usual movement. Anyone could help me?