Ejemplo n.º 1
0
  private View getOrCreateChild(int i) {
    View v = mChildViews.get(i);
    if (v == null) {
      v = mAdapter.getView(i, getCached(), this);
      addAndMeasureChild(i, v);
      onChildSetup(i, v);
      onScaleChild(v, mScale);
    }

    return v;
  }