如何限制滑动抽屉的尺寸?

发布于 2024-10-21 16:46:47 字数 428 浏览 1 评论 0原文

可能的重复:
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 技术交流群。

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

发布评论

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

评论(1

只为一人 2024-10-28 16:46:47

这个答案关于覆盖 SlidingDrawer #onMeasureSlidingDrawer 启用 wrap_content 似乎是赢家。

onMeasure() 方法
SlidingDrawer 类基本上
覆盖布局模式
fill_parent,这就是原因
layout_height="wrap_content" 不是
工作。

编辑 - 或者,您可以使用 layout_height="200dp" 等内容精确设置高度。

您的另一个问题已经得到了否定的回答< /a>.

This answer about overriding SlidingDrawer#onMeasure to enable wrap_content for SlidingDrawer seems like a winner.

The onMeasure() method of the
SlidingDrawer class basically
overrides the layout modes to
fill_parent, this is why
layout_height="wrap_content" is not
working.

Edit - Or, you can set the height exactly in with something like layout_height="200dp".

Your other question was already answered in the negative.

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