在 Android studio "startIconDrawable" 中使用图像显示灰色

Using Image in Android studio "startIconDrawable" is showing grey

我正在 material TextInputLayout 中设置一个图标,但该图标显示为灰色而不是其原始颜色(如下图所示)。在图像视图中使用相同的图标图像显示颜色。我已经搜索了很多,但没有找到任何解决方案。


任何帮助都会很棒。提前致谢。

XML 对于 TextInputLayout :-

    <com.google.android.material.textfield.TextInputLayout
    android:id="@+id/country"
    style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:hint="@string/country"
    app:layout_constraintBottom_toBottomOf="parent"
    app:startIconDrawable="@drawable/flag"
    app:layout_constraintStart_toStartOf="parent"
    android:layout_margin="10dp">

    <com.google.android.material.textfield.TextInputEditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="+91"
        android:enabled="false"/>

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

只需将此行添加到您的 xml TextinputLayout Xml 文件

app:startIconTint="@null"


 <com.google.android.material.textfield.TextInputLayout
    android:id="@+id/country"
    style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_margin="10dp"
    android:hint="کشور"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:startIconDrawable="@drawable/blue_cheese"
    app:startIconTint="@null">

    <com.google.android.material.textfield.TextInputEditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:enabled="false"
        android:text="+91" />

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