如何使TextView从屏幕中心移动到Android中的位置

时间:2013-08-27 02:26:13

标签: android android-animation

animotion是TextView从屏幕中心移动到其位置,同时,大小从零变为正常。 我知道要使用TranslateAnimationScaleAnimation,但我不知道确定这个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

1 个答案:

答案 0 :(得分:0)

TranslateAnimation translate = new TranslateAnimation((mWidth / 2)- strSize / 2,
 0,
 (mHeight / 2) - strHeigth,
 0);

尝试使用此代码翻译anim