TextInputLayout prefix has a small but noticeable spacing to the subsequent text in the TextInputEditText.
In the following image, The first www is the prefix, the following are the regular text. I want to remove the spacing shown in the circle
My code:
<com.google.android.material.textfield.TextInputLayout android:id="@+id/text_input_layout" android:layout_width="match_parent" android:layout_height="wrap_content" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:prefixText="www" app:prefixTextColor="@color/black"> <com.google.android.material.textfield.TextInputEditText android:id="@+id/text_input_edit_text" android:layout_width="match_parent" android:layout_height="wrap_content" /> Thank you!

