我有一个名为 myimage 的ImageView。
我正在从屏幕外侧的一侧到另一侧的屏幕之外 TranslateAnimation 。
Animation animation = new TranslateAnimation(0, 0, -1500, 1500);
animation.setDuration(1000);
animation.setFillAfter(false);
myimage.startAnimation(animation);
有什么方法可以让我从一侧的屏幕外移动到另一侧的屏幕外,无论屏幕尺寸如何?
答案 0 :(得分:3)
我现在有了。
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
final float screen_width_half = metrics.widthPixels/2;
final float distance = screen_width_half + 50;
//determine half screen width and add 50 to it to take it just a little outside the screen
Animation animation =
new TranslateAnimation(0, 0, -distance, distance);
animation.setDuration(1000);
animation.setFillAfter(false);
myimage.startAnimation(animation);