public void cancelSelected() { if (mTRoundImageViewLayout != null && mTRoundImageViewLayout.getVisibility() == 0) { mTRoundImageViewLayout.cancelSelected(); } }
public void changeEdge(int i) { edge = i; if (mTRoundImageViewLayout != null && mTRoundImageViewLayout.getVisibility() == 0) { mTRoundImageViewLayout.changeViewEdge(i); } }
public void changeCornerRadius(int i) { if (mTRoundImageViewLayout != null && mTRoundImageViewLayout.getVisibility() == 0) { mTRoundImageViewLayout.changeViewCorner(i); } radius = i; }
public float getEdge() { if (mTRoundImageViewLayout != null && mTRoundImageViewLayout.getVisibility() == 0) { return (float)mTRoundImageViewLayout.getEdge(); } else { return (float)edge; } }
public void changeCornerRadius(boolean flag) { int i = (int)getContext().getResources().getDimension(0x7f08002d); if (!flag) { i = 0; } if (mTRoundImageViewLayout != null && mTRoundImageViewLayout.getVisibility() == 0) { mTRoundImageViewLayout.changeViewCorner(i); } radius = i; }