Android中SlidingDrawer的打开百分比
我正在尝试确定 Android 中 SlidingDrawer 的“打开”百分比。看来抽屉只有 onOpen、onClose 和 onScroll 监听器。 OnScroll 仅提供用于确定滚动何时结束和滚动何时开始的方法。
TouchEvents 也不起作用,因为 SlidingDrawer 可以在不被触摸的情况下滑动...
我尝试使用 getAnimation() 获取 SlidingDrawer 的动画(然后基于此确定百分比),但返回 null getLayoutAnimation() 也是如此。
有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很晚才回答,我相信你不再关心了,但其他人可能会关心。 :)
我不完全确定你为什么想要一个滑动抽屉。编写自己的自定义视图(允许您滑入和滑出)可能比尝试使用滑动抽屉更容易、更快。这样你就会有更多的控制权。
另一个想法是尝试使用 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.