Exemple #1
0
 public int getAreaHeight(TyHeightKind kind) {
   int height = 0;
   if (kind == TyHeightKind.TyAll) {
     height = getHeight();
   } else if (kind == TyHeightKind.TySelect) {
     if (mTyBottomSelectInd != null && (mTyBottomSelectInd.getVisibility() != View.GONE)) {
       height = mTyBottomSelectHeight;
     }
   }
   return height;
 }