我正在尝试制作一个 TextInputLayout ,其中我使用了一个 TextInputEditText ,但即使在将 TextInputEditText 边距设置为 0 之后,内部仍有一个默认边距布局,不知道为什么,但有点困惑。
<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.Button.OutlinedButton"
android:id="@+id/textInputLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Email Id"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp"
app:layout_constraintBottom_toTopOf="@+id/TXTpassword"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/IMGlogo">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/TXTemail"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</com.google.android.material.textfield.TextInputLayout>
答案 0 :(得分:0)
尝试使用
android:insetBottom="0dp"
android:insetTop="0dp"
android:insetRight="0dp"
android:insetLeft="0dp"