在 Android 上拖动以动态调整一对相邻布局的大小
我在 Android 应用程序中有一对相邻的视图。我想让用户能够拖动小部件来更改较大容器内两个视图的相对大小。如果 SlidingDrawer 让用户将抽屉固定在他们想要的任何地方,那可能会得到我想要的东西。
我的 Google 'fu 让我失望了。我在任何地方都找不到这样的例子。
谢谢!
I have a pair of adjacent views in an Android application. I'd like to give the user the ability to drag a widget to change the relative size of the two views within a larger container. If SlidingDrawer let the user pin the drawer wherever they wanted, that'd likely get me what I want.
My Google 'fu is failing me. I can't find a single example of this anywhere.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终编写了一些代码来创建自定义 LinearLayout 子类来执行我想要的操作。
代码位于 https://github.com/k9mail/splitview
I ended up putting together a bit of code to create a custom LinearLayout subclass to do what I wanted.
The code is at https://github.com/k9mail/splitview