Android中SlidingDrawer的打开百分比

发布于 2024-11-15 04:35:55 字数 321 浏览 3 评论 0 原文

我正在尝试确定 Android 中 SlidingDrawer 的“打开”百分比。看来抽屉只有 onOpenonCloseonScroll 监听器。 OnScroll 仅提供用于确定滚动何时结束和滚动何时开始的方法。

TouchEvents 也不起作用,因为 SlidingDrawer 可以在不被触摸的情况下滑动...

我尝试使用 getAnimation() 获取 SlidingDrawer 的动画(然后基于此确定百分比),但返回 null getLayoutAnimation() 也是如此。

有什么想法吗?

I am trying to determine the "open" percentage of a SlidingDrawer in Android. It seems that the drawer only has onOpen, onClose and onScroll Listeners. OnScroll only provides methods for determining when scroll has ended and when scroll has begun.

TouchEvents won't work either because the SlidingDrawer can slide without being touched...

I tried grabbing the Animation of the SlidingDrawer using getAnimation() (and then somehow determining percentage based on that) but that returns null and so does getLayoutAnimation().

Any thoughts?

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

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

发布评论

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

评论(1

深府石板幽径 2024-11-22 04:35:55

很晚才回答,我相信你不再关心了,但其他人可能会关心。 :)

我不完全确定你为什么想要一个滑动抽屉。编写自己的自定义视图(允许您滑入和滑出)可能比尝试使用滑动抽屉更容易、更快。这样你就会有更多的控制权。

另一个想法是尝试使用 getChildVisibleRect,并使用getWidth 在抽屉上。我完全不确定这是否有效。 :)

祝你好运。

Very late answer, and I'm sure you don't care anymore, but someone else might. :)

I'm not entirely sure why you want a sliding drawer at all. It is likely easier and faster to write your own custom view that allows you to slide in and out, than to try to use sliding drawer. That way you will have way more control.

Another thought is to try getting the visible child rectangle of the sliding drawer from its container using getChildVisibleRect, and calculate the visible percentage using getWidth on the drawer. I'm not at all sure this will work. :)

Best of luck either way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文