如何在材料文本字段的开头插入图标

问题描述 投票:1回答:2

我正在尝试在“材料文本字段”的开头插入一个图标。我也没有在material.io的文档中找到合适的东西。

这是我要实现的目标。

Image

android android-textinputlayout material-components-android
2个回答

0
投票

TextInputLayout一起使用TextInputLayout

app:startIconDrawable

<com.google.android.material.textfield.TextInputLayout android:hint="Select Time" app:startIconDrawable="@drawable/ic_add_24px" style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"> <com.google.android.material.textfield.TextInputEditText ../> </com.google.android.material.textfield.TextInputLayout>

© www.soinside.com 2019 - 2024. All rights reserved.