如何在TextInputLayout中将可绘制对象垂直居中?

时间:2019-10-18 09:47:24

标签: android material-design android-textinputlayout material-components material-components-android

我在TextInputLayout的左侧添加了一个drawable(如下面的TextInputEditText所示),并想在其下方添加一些填充,以使其在其父级内部垂直居中。是否有命令或解决方法?

<com.google.android.material.textfield.TextInputLayout
                android:id="@+id/contact_first_name_input_text"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:hint="@string/contact_first_name"
                android:layout_marginEnd="8dp">

                <com.google.android.material.textfield.TextInputEditText
                    android:id="@+id/contactFirstName"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:inputType="textPersonName|textCapWords"
                    android:drawableStart="@drawable/ic_person_black_24dp"
                    android:drawablePadding="8dp"
                    />

1 个答案:

答案 0 :(得分:0)

使用app:startIconDrawable中的 TextInputLayout 属性添加可绘制对象:

<com.google.android.material.textfield.TextInputLayout
       app:startIconDrawable="@drawable/..."

enter image description here enter image description here