当用户旋转手机时如何制作淡入淡出动画?
我的应用程序的主屏幕是纵向模式的列表视图。当它处于横向时,它会切换到 ImageView。我希望能够在切换方向时制作淡入淡出过渡的动画。我该怎么做呢?
My app's main screen is a listview in portrait mode. When it is in landscape orientation it switches to an ImageView. I want to be able to animate a fading transition when I switch orientations. How can I go about doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了类似的问题: 如何在 Android 活动屏幕上淡入图像?
有解决方案。只需确保 UI 映射到 XML 后执行动画即可。 Android 会在每次旋转时终止 Activity,因此最好的位置是 onStart() 或 onCreate()
I found a similar question: How to do a fadein of an image on an Android Activity screen?
that has the solution. Just need to make sure the animation is performed after the UI is mapped to the XML. Android kills the activity every time you rotate, so best place is onStart() or onCreate()