1. Android animation코드로 애니메이션을 만드는법 내가지금 쓸거는 TrnaslateAnimation인데 간단하게 new TrnaslateAnimation(0,0,0,100) 이런식으로 만들어서setDuration 으로 동작시간 정하고setFilterAfter? 이거로 동작후에거기 멈추라고 하면 된다. 근데 내가 만들 애니메이션은 복합 동작이다먼저 아래로 움직이고 그 후 우측으로 움직인다. 그러려면 TranslateAnimation이 두번들ㅇㅓ가야되는데 그러려면 AnimationSet 이란 객체를 만들고 거기다 때려박으면 된다. 여기 내가쓴 예제를 올린다 _tvTarget = (TextView)findViewById(R.id.tv_target); AnimationSet animSet = ne..