Возможно ли иметь цвет фона только за endIcon?
На данный момент все, что я могу сделать, - это только показать пользовательский значок.
Здесь код, который я пишу, чтобы получить текущий дизайн.
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/date_of_birth_input_layout"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
app:endIconDrawable="@drawable/ic_calendar"
app:endIconMode="custom"
app:endIconTint="@color/redText"
app:endIconTintMode="multiply"
app:hintEnabled="false"
app:layout_constraintTop_toBottomOf="@id/date_of_birth_title">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/date_of_birth_input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/activity_horizontal_margin"
android:layout_marginTop="6dp"
android:layout_marginEnd="@dimen/activity_horizontal_margin"
android:focusable="false"
android:fontFamily="@font/opensans_regular"
android:hint="@string/date_of_birth_hint"
android:imeOptions="actionNext"
android:inputType="text"
android:paddingLeft="10dp"
android:paddingTop="13dp"
android:paddingRight="10dp"
android:paddingBottom="13dp"
android:textSize="16sp" />
</com.google.android.material.textfield.TextInputLayout>