如何限制滑动抽屉的尺寸?
可能的重复:
Android:可以使用wrap_content设置SlidingDrawer的高度吗?< /a>
有没有办法改变滑动抽屉打开时的大小?有没有办法将其放置在顶部或左侧,因为默认选项是垂直方向的底部和水平方向的右侧。
Possible Duplicate:
Android: can height of SlidingDrawer be set with wrap_content?
Is there a way to change the size of a sliding drawer when it opens ? And is there a way to place it in the top, or in the left, because the default option are bottom for the vertical orientation and right to the horizontal orientation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个答案关于覆盖
SlidingDrawer #onMeasure
为SlidingDrawer
启用wrap_content
似乎是赢家。编辑 - 或者,您可以使用
layout_height="200dp"
等内容精确设置高度。您的另一个问题已经得到了否定的回答< /a>.
This answer about overriding
SlidingDrawer#onMeasure
to enablewrap_content
forSlidingDrawer
seems like a winner.Edit - Or, you can set the height exactly in with something like
layout_height="200dp"
.Your other question was already answered in the negative.