Advertisement
Guest User

Untitled

a guest
Oct 1st, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. private static final float MAX_SWIPE_DISTANCE_FACTOR = .6f;
  2. private static final int REFRESH_TRIGGER_DISTANCE = 120;
  3. private float mTotalDragDistance = -1;
  4. .................................................................
  5.  
  6. if (getParent() != null && ((View) getParent()).getHeight() > 0) {
  7. final DisplayMetrics metrics = getResources().getDisplayMetrics();
  8. mTotalDragDistance = (int) Math.min(
  9. ((View) getParent()).getHeight() * MAX_SWIPE_DISTANCE_FACTOR,
  10. REFRESH_TRIGGER_DISTANCE * metrics.density);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement