为整个布局的视图设置动画

发布于 2024-10-22 11:40:39 字数 162 浏览 6 评论 0原文

我尝试对 ImageView 从子布局 (Relativelayout) 到父布局 (Relativelayout) 进行动画。问题是进入父布局时 Imageview 没有被绘制。

I trying to animate the ImageView from child layout (Relativelayout) to parent layout (Relativelayout). Issue is Imageview is not getting painted while entering into the parent layout.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗地喜欢 2024-10-29 11:40:39

这个 R.anim.popup_show.xml 文件

    <?xml version="1.0" encoding="utf-8"?>
    <set xmlns:android="http://schemas.android.com/apk/res/android">

 <translate android:fromXDelta="100%p" android:toXDelta="0" android:duration="500"/>
    </set>

并应用在 java 文件中,如下所示

   Animation animRight = AnimationUtils.loadAnimation(options.this, R.anim.popup_show);
   ImageView.startAnimation( animRight ); 

This R.anim.popup_show.xml file

    <?xml version="1.0" encoding="utf-8"?>
    <set xmlns:android="http://schemas.android.com/apk/res/android">

 <translate android:fromXDelta="100%p" android:toXDelta="0" android:duration="500"/>
    </set>

and apply in java file like as

   Animation animRight = AnimationUtils.loadAnimation(options.this, R.anim.popup_show);
   ImageView.startAnimation( animRight ); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文