Android动画从右向左移动布局

时间:2012-01-30 10:19:22

标签: android animation layout right-to-left

我使用动画从右向左移动布局。

动画无效。当视图移动时,移动视图的底边和右边在屏幕上绘制,如下图所示。 有谁知道原因以及如何解决这个问题?谢谢!

1 个答案:

答案 0 :(得分:0)

引用该链接here。该动画适用于列表视图适配器和活动。你试试吧。

私人动画inFromRightAnimation(){

    Animation inFromRight = new TranslateAnimation(
            Animation.RELATIVE_TO_PARENT, +1.0f,
            Animation.RELATIVE_TO_PARENT, 0.0f,
            Animation.RELATIVE_TO_PARENT, 0.0f,
            Animation.RELATIVE_TO_PARENT, 0.0f);
    inFromRight.setDuration(500);
    inFromRight.setInterpolator(new AccelerateInterpolator());
    return inFromRight;
    }