Android: android:layout_width=wrap_content 但不小于 X dp?
是否可以将 GUI 元素宽度定义为 android:layout_width="wrap_content"
但以某种方式定义 Xdp
的最小宽度?
Is it possible to define GUI element width as android:layout_width="wrap_content"
but somehow define minimal width of Xdp
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您正在寻找的属性是
android:minWidth
。例如,I believe the attribute you are looking for is
android:minWidth
. For example,您可以使用:
在您的 xml 布局中
20dp
是一个示例值you can use:
in your xml layout
20dp
is a sample value