Remove space between bounds and button border

后端 未结 2 849
野趣味
野趣味 2020-12-11 08:39

How do I remove those space between Button border and view bounds tried setting padding to 0dp but with no results.
These is mater

相关标签:
2条回答
  • 2020-12-11 09:08

    you can use weight and make the width 0dp then space will be removed.

    0 讨论(0)
  • 2020-12-11 09:16

    The MaterialButton has a default style with these insets:

     <style name="Widget.MaterialComponents.Button"..>
        <item name="android:insetLeft">0dp</item>
        <item name="android:insetRight">0dp</item>
        <item name="android:insetTop">@dimen/mtrl_btn_inset</item>
        <item name="android:insetBottom">@dimen/mtrl_btn_inset</item>
        ...
     </style>
    

    The value of @dimen/mtrl_btn_inset is 6dp.

    Just use:

      <com.google.android.material.button.MaterialButton
          android:insetTop="0dp"
          android:insetBottom="0dp"
          ../>
    

    0 讨论(0)
提交回复
热议问题