Exemplo n.º 1
0
 @Override
 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
   if (mVARM.getAspectRatio() > 0 && mAspectRatioMode == ASPECT_RATIO_PREVIEW) {
     mVARM.measure(widthMeasureSpec, heightMeasureSpec);
     setMeasuredDimension(mVARM.getMeasuredWidth(), mVARM.getMeasuredHeight());
   } else {
     super.onMeasure(widthMeasureSpec, heightMeasureSpec);
   }
 }