【问题标题】:How to horizontally center "Label hint" in TextInputLayout?如何在 TextInputLayout 中水平居中“标签提示”?
【发布时间】:2021-12-11 04:40:43
【问题描述】:
【问题讨论】:
标签:
android
xml
android-layout
android-textinputlayout
【解决方案1】:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/inputAddress"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/_8sdp"
android:hint="@string/postal_address"
android:textSize="@dimen/_10sdp"
>
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edtAddress"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="adas"
android:textSize="@dimen/_10sdp" />
</com.google.android.material.textfield.TextInputLayout>