List of usage examples for android.widget HorizontalScrollView getDrawingRect
public void getDrawingRect(Rect outRect)
From source file:com.raspi.chatapp.ui.chatting.SendImageFragment.java
private boolean isViewVisible(HorizontalScrollView scrollView, View view) { Rect scrollBounds = new Rect(); scrollView.getDrawingRect(scrollBounds); float vLeft = view.getLeft(); float vRight = view.getWidth() + vLeft; return scrollBounds.left < vLeft && scrollBounds.right > vRight; }