gpt4 book ai didi

android - 如何消除 LayoutTransition 动画之前的延迟

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:53:06 25 4
gpt4 key购买 nike

我正在 Honeycomb 中试用新的 LayoutTransition 类。我设置了一个动画,在将 View 添加到 ViewGroup 时将其滑动到位。我注意到在 View 首次呈现和 LayoutTransition.APPEARING 动画开始之间有轻微的延迟(大约 20 毫秒)。换句话说, View 出现在屏幕上后,它会悬在空中片刻,然后开始动画到位。您甚至可以在 ApiDemos 示例项目中注意到这一点。在布局动画示例中,ViewGroup 的 APPEARING 动画开始之前总是有延迟。我什至尝试将其他 LayoutTransition 动画设置为 null,或者最终给它们非常短的持续时间,但 APPEARING 动画仍然延迟。这是我的代码:

public class DebugExampleFour extends Activity {
private int numButtons = 1;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.debug_example_four);

final ViewGroup frame = (ViewGroup) findViewById(R.id.frame_container);
LayoutTransition transitioner = new LayoutTransition();

Animator appearingAnimation = ObjectAnimator.ofFloat(null, "translationX", 600, 0);
appearingAnimation.setDuration(45);
appearingAnimation.setStartDelay(0);
appearingAnimation.setInterpolator(new DecelerateInterpolator());
appearingAnimation.addListener(new AnimatorListenerAdapter() {
public void onAnimationEnd(Animator anim) {
View view = (View) ((ObjectAnimator) anim).getTarget();
view.setTranslationX(0f);
}
});
transitioner.setAnimator(LayoutTransition.APPEARING, appearingAnimation);
Animator dummyAnimation = ObjectAnimator.ofInt(0, 1);
dummyAnimation.setDuration(1);
dummyAnimation.setStartDelay(0);
transitioner.setAnimator(LayoutTransition.CHANGE_APPEARING, dummyAnimation);
transitioner.setAnimator(LayoutTransition.CHANGE_DISAPPEARING, dummyAnimation);
transitioner.setAnimator(LayoutTransition.DISAPPEARING, dummyAnimation);

frame.setLayoutTransition(transitioner);

Button addButton = (Button) findViewById(R.id.addNewButton);
addButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Button newButton = new Button(DebugExampleFour.this);
newButton.setText("Click To Remove " + (numButtons++));
newButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
frame.removeView(v);
}
});
frame.addView(newButton, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

}
});
}

}

这是示例附带的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:orientation="vertical">
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Add Button"
android:id="@+id/addNewButton" />
<LinearLayout android:orientation="vertical"
android:layout_width="match_parent" android:layout_height="match_parent"
android:id="@+id/frame_container" android:animateLayoutChanges="true" />
</LinearLayout>

如何消除 APPERING 动画之前的延迟?

最佳答案

对 - 两个级别都有延迟。当您在 LayoutTransition 的上下文中运行 Animator 时,您希望在 LayoutTransition 对象上设置持续时间和 startDelay,而不是在底层 Animator 上(因为转换对象将自己的这些属性值提供给它所创建的动画师)运行)。

原因是 LayoutTransition 通常是在容器内的对象上运行的一系列动画。因此,例如,如果您希望一个对象“出现”在容器中,那么过渡将首先使其他对象动画化,然后将新对象动画化到位。想象一下,将一个项目添加到一组对象的中间(就像您在 ApiDemos 应用程序中看到的那样);它首先腾出空间,然后使对象淡入。

在上面的原始代码中,您希望出现的动画立即运行,因此您应该将 APPEARING 的过渡 startDelay 设置为 0(就像您在上面的答案中所做的那样)。

反过来说,DISAPPEARING 动画默认没有 startDelay,但是 CHANGE_DISAPPEARING 动画的 startDelay 等于 DISAPPEARING 动画的持续时间,假设您首先要删除一个项目,然后为容器到他们的新地方。

由于这些假设不一定适用于所有情况,因此 LayoutTransition 上有 duration/startDelay 属性,可根据您需要它在特定情况下的工作方式来控制行为。

另请注意,如果您不想运行其中一种动画类型,则应将该动画设置为 null(请参阅 LayoutTransition.setAnimator(int, Animator) 的文档)。将它设置为您的 dummyAnimator 不会有相同的效果。一方面,LayoutTransition 上的默认持续时间/startDelay 值仍然适用,即使您为这些动画提供了自定义 Animator。

需要注意的其他事项:底层计时机制(适用于 Android,但也适用于我曾经使用过的大多数其他平台)将有一些最低分辨率。因此,您将持续时间设置为“1”,这可能不会导致该动画以 1 毫秒结束。相反,它将运行一帧,然后在下一帧(如果系统没有陷入困境,通常是运行良好的应用程序中设备的刷新率),它会看到动画应该结束。

关于android - 如何消除 LayoutTransition 动画之前的延迟,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5225367/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com