Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我希望在 Activity A 中使用从左到右的手指移动应该调用 Activity B。同样,如果我从右到左移动它,它应该返回到上一个 Activity,即 Activity A。
如何做到这一点?
您必须使用 android 手势工具定义您的手势,然后您必须实现一个手势侦听器来侦听手势事件
基本手势检测- stackoverflow
手势介绍- 移动 tuts
来源:Android:用于在标签之间切换的滑动手势和动画
那么有几种方法可以实现你所说的。
您可以使用手势生成器来监听滑动,然后触发您的意图来启动活动。
在不了解更多信息的情况下,您可能还想查看页面查看器。