文本输入布局提示与轮廓框重叠

Text Input layout hint is overlapped with the outlined box

我的文本输入布局的提示文本似乎重叠

如何将提示文本移动到大纲的右侧。

我的 xml :

<com.google.android.material.textfield.TextInputLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tilAddress"
        style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
        android:padding="5dp"
        app:hintAnimationEnabled="true"
        app:hintTextColor="@color/colorPrimaryDark"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/tvBillingText">

    <EditText
        android:id="@+id/tilAddress1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="16dp"
        android:hint="Address1 *"
        android:background="@null"
        android:padding="12dp"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/tvBillingText"/>
    </com.google.android.material.textfield.TextInputLayout>`

如有任何帮助,我们将不胜感激。谢谢

编辑

通过删除边距,我可以解决问题

您是否尝试过在 TextInputLayout 而不是 EditText 上设置提示?我认为还建议将 EditText 替换为 TextInputEditText,如下例所示:

<com.google.android.material.textfield.TextInputLayout
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:hint="@string/form_username">

     <com.google.android.material.textfield.TextInputEditText
             android:layout_width="match_parent"
             android:layout_height="wrap_content"/>

 </com.google.android.material.textfield.TextInputLayout>

我从 Edittext 中删除了 layout_margin,它可以解决我的问题