安卓有滑块视图吗?

发布于 2024-10-12 03:10:58 字数 135 浏览 1 评论 0原文

你好,我想知道 android 是否有响应用户幻灯片的视图。

如果你想确切地知道我的意思,银河选项卡中有一个用于解锁手机并在屏幕底部静音/激活声音。

看起来就像iPhone的滑动解锁功能。

预先感谢您的帮助!

Hi i was wondering if android has view that responds to user slides.

If you want to know exactly what i mean there is one in the galaxy tab for unlocking the phone and muting/activating sound on the bottom of the screen.

Seems like the iPhone slide to unlock feature.

Thanks in advance I appreciate the help!

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

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

发布评论

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

评论(2

太阳公公是暖光 2024-10-19 03:10:58

所有视图都可以响应“用户幻灯片”。在 Android 中,这是一种称为 fling 或 swipe 的手势。您可以参阅本教程示例实现

基本上:

  • 在您自己的类中实现 SimpleOnGestureListener 的 onFling
  • 从视图的 onTouch 方法调用手势侦听器

All the views can respond to "user slides". In Android, this is a gesture called fling or swipe. You can see this tutorial for a sample implementation.

Basically:

  • implement onFling of SimpleOnGestureListener in your own class
  • call your gesture listener from the onTouch method of the view
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文