如何减少 Android 按钮对象中文本周围的内部填充?
2022-08-31 09:45:52
所以,目前我有一个按钮,看起来像上面的第一张图片。如何减少按钮本身内部文本周围的填充(使看起来更像第二个图像)?
布局宽度和高度设置为:
android:layout_width="match_parent"
android:layout_height="wrap_content"
自定义样式形状具有参数”
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
其余的只是颜色属性和半径值。
为了清楚起见,我希望按钮的框架更紧密地拥抱“登录”文本。
非常感谢所有帮助和反馈。谢谢。