Android 中的翻转活动
我正在开发一个 Android 应用程序,我想翻转我的应用程序(如 iPhone)。 当用户触摸屏幕并向左或向右滑动时,它应该改变活动。
有人对我如何在代码中实现这个有建议吗?
I'm developing an android application and I want flipping in my application (like iPhone).
When the user touches the screen and swipes left or right it should change the activity.
Does anyone have suggestions as to how I could implement this in code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个
http://www.inter-fuser.com/2009 /08/android-animations-3d-flip.html
try this
http://www.inter-fuser.com/2009/08/android-animations-3d-flip.html
我有另一种解决方案:
如果您不仅想翻转一个视图,而是想要翻转整个屏幕的所有视图,那么您只有一种可能性:您必须使用 Fragment 并翻转它们。为此,请使用谷歌解决方案: 谷歌示例
因此,在您的项目中使用混合结构活动和碎片
I have another Solution:
If you want to flip not only one view but the whole screen with all views, you have only one possibility: you must use Fragment and flip them. For this use google solution: google example
So in your project use mix structure activities and fragments