按钮的不同边框宽度

发布于 2024-11-28 15:17:11 字数 156 浏览 0 评论 0原文

如何为 Android 上的按钮设置不同的宽度?就像顶部和底部是 2dp 但左侧和右侧是 4dp?谢谢。

更新:

如果我的问题不清楚,我深表歉意。它不是边距或填充。但我想在CSS中自定义宽度,例如 border-top 或 border-left 。在安卓上可以吗?

how can I set different width for a button on android? Like top and bottom are 2dp but left and right are 4dp? Thank you.

Update:

My apology if my question is unclear. It is not margin or padding. But I would like to customise the width like border-top or border-left in css. Is it possible in android?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

东风软 2024-12-05 15:17:11

你的问题不清楚。你看起来像下面这样吗?

<Button 
android:text="Button"
android:layout_marginTop="2dp"
android:layout_marginBottom="2dp" 
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:id="@+id/button1" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content">
</Button>

Your question is not clear.Are you looking something like following?

<Button 
android:text="Button"
android:layout_marginTop="2dp"
android:layout_marginBottom="2dp" 
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:id="@+id/button1" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content">
</Button>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文