animotion是TextView
从屏幕中心移动到其位置,同时,大小从零变为正常。
我知道要使用TranslateAnimation
和ScaleAnimation
,但我不知道确定这个poist,所以我不能让它从中心移动到它的位置。
我做什么了?
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
答案 0 :(得分:0)
TranslateAnimation translate = new TranslateAnimation((mWidth / 2)- strSize / 2,
0,
(mHeight / 2) - strHeigth,
0);
尝试使用此代码翻译anim