アニメーションはTextView
、画面の中心からその位置に移動すると同時に、サイズがゼロから通常に変化することです。TranslateAnimation
とを使用することは知っていましたScaleAnimation
が、ポイストを確認できないため、中心からその位置に移動させることはできません。私は何をすべきですか?
TranslateAnimation translate = new TranslateAnimation(0,(mWidth / 2)- strSize / 2, 0, ((mHeight / 2) - strHeigth));
strHeigth: the TextView heigth;
strSize : the TextView width
mWidth : the screen width;
mHeight : the screeen heigth