如何为android上的按钮设置不同的宽度?像顶部和底部是2dp但左和右是4dp?谢谢。
更新:
如果我的问题不清楚,我道歉。它不是边距或填充。但我想在CSS中自定义边框顶部或边框左边的宽度。在android中有可能吗?
答案 0 :(得分:1)
你的问题不明确。你看起来像是跟着吗?
<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>