Ejemplo n.º 1
0
 public void setMenuHeight(int measuredHeight) {
   Log.i("byz", "pos = " + position + ", height = " + measuredHeight);
   LayoutParams params = (LayoutParams) mMenuView.getLayoutParams();
   if (params.height != measuredHeight) {
     params.height = measuredHeight;
     mMenuView.setLayoutParams(mMenuView.getLayoutParams());
   }
 }