애니메이션은 실제 크기가 아닌 뷰의 렌더링 매트릭스를 변경하기 때문에 API를 통해이 작업을 수행하는 쉬운 방법이없는 것 같습니다. 그러나 우리는 LinearLayout을 속여 뷰가 작아지고 있다고 생각하도록 음의 여백을 설정할 수 있습니다.
따라서 ScaleAnimation을 기반으로 자신 만의 Animation 클래스를 만들고 "applyTransformation"메서드를 재정 의하여 새 여백을 설정하고 레이아웃을 업데이트하는 것이 좋습니다. 이렇게 ...
public class Q2634073 extends Activity implements OnClickListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.q2634073);
findViewById(R.id.item1).setOnClickListener(this);
}
@Override
public void onClick(View view) {
view.startAnimation(new MyScaler(1.0f, 1.0f, 1.0f, 0.0f, 500, view, true));
}
public class MyScaler extends ScaleAnimation {
private View mView;
private LayoutParams mLayoutParams;
private int mMarginBottomFromY, mMarginBottomToY;
private boolean mVanishAfter = false;
public MyScaler(float fromX, float toX, float fromY, float toY, int duration, View view,
boolean vanishAfter) {
super(fromX, toX, fromY, toY);
setDuration(duration);
mView = view;
mVanishAfter = vanishAfter;
mLayoutParams = (LayoutParams) view.getLayoutParams();
int height = mView.getHeight();
mMarginBottomFromY = (int) (height * fromY) + mLayoutParams.bottomMargin - height;
mMarginBottomToY = (int) (0 - ((height * toY) + mLayoutParams.bottomMargin)) - height;
}
@Override
protected void applyTransformation(float interpolatedTime, Transformation t) {
super.applyTransformation(interpolatedTime, t);
if (interpolatedTime < 1.0f) {
int newMarginBottom = mMarginBottomFromY
+ (int) ((mMarginBottomToY - mMarginBottomFromY) * interpolatedTime);
mLayoutParams.setMargins(mLayoutParams.leftMargin, mLayoutParams.topMargin,
mLayoutParams.rightMargin, newMarginBottom);
mView.getParent().requestLayout();
} else if (mVanishAfter) {
mView.setVisibility(View.GONE);
}
}
}
}
일반적인주의 사항이 적용됩니다. 보호 된 메서드 (applyTransformation)를 재정의하기 때문에 향후 Android 버전에서 작동하지 않을 수도 있습니다.