等待其他视图动画结束

编程入门 行业动态 更新时间:2024-10-26 22:28:36
本文介绍了等待其他视图动画结束的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有以下布局片段:

<LinearLayout android:id="@+id/tagContainer" android:layout_width="match_parent" android:layout_height="wrap_content" android:animateLayoutChanges="true" > </LinearLayout> <TextView android:id="@+id/commentLabel" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/tagContainer" />

正如你所看到的, animateLayoutChanges 设置为真在的LinearLayout ,所以当一个项目被添加到它,它以动画的加法。此行,但有问题的去除。如果我删除一个项目,该动画依然打得很好,但的TextView 下面会弹出立刻不会等待动画完成。我怎样才能做到这一点,甚至更好,使的TextView 动画了与的LinearLayout 动画同步?

As you can see, animateLayoutChanges is set to true on the LinearLayout, so when an item is added to it, it animates the addition. This ok, but there are problems with the removal. If i remove an item, the animation still plays well, but the TextView below pops up immediately and does not wait for the animation to finish. How can i achieve this, or even better, make the TextView animate up synchronized with the LinearLayout animation?

推荐答案

您可以检索LayoutTransition从下面的方式的观点:

You can retrieve the LayoutTransition from the view in following way:

mLinearLayout = findViewById(R.id.myLayout); LayoutTransition layoutTransition = mLinearLayout.getLayoutTransition(); layoutTransition.addTransitionListener(new TransitionListener(){ @Override public void endTransition(LayoutTransition arg0, ViewGroup arg1, View arg2, int arg3) { switch(arg2.getId()){ //.... } } @Override public void startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) { switch(view.getId()){ //.... } }});

更多推荐

等待其他视图动画结束

本文发布于:2023-11-02 13:36:27,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1552541.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:视图   结束   动画

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!