I want to change the visblity of an item when AndroidSlidingUpPanel is expanded to full screen.Is there any listener which detects whether sliding panel is full screen?I tried using this but didn't worked-
slidingPaneLayout.setOnDragListener(new View.OnDragListener() {
@Override
public boolean onDrag(View v, DragEvent event) {
if(slidingPaneLayout.getPanelHeight()>700)
belowarrow.setVisibility(View.GONE);
return true;
}
});