示例#1
0
 /**
  * Determines the size of the view by first checking {@link android.view.View#getWidth()} and
  * {@link android.view.View#getHeight()}. If one or both are zero, it then checks the view's
  * {@link LayoutParams}. If one or both of the params width and height are less than or equal to
  * zero, it then adds an {@link android.view.ViewTreeObserver.OnPreDrawListener} which waits until
  * the view has been measured before calling the callback with the view's drawn width and height.
  *
  * @param cb {@inheritDoc}
  */
 @Override
 public void getSize(SizeReadyCallback cb) {
   sizeDeterminer.getSize(cb);
 }