在实现MaterialButton
之后,由于某种原因,其宽度似乎并未环绕在文本内部,从而在右边留出了额外的空间。 MaterialButton
是否需要在ConstraintLayout
内才能起作用?还是我的代码中有不正确的地方?
按钮布局
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.button.MaterialButton
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/myBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="start|center_vertical"
android:padding="12dp"
android:layout_margin="12dp"
style="@style/Widget.MaterialComponents.Button.OutlinedButton" />