如何在 TextInputLayout 中水平居中“标签提示”?
Posted
技术标签:
【中文标题】如何在 TextInputLayout 中水平居中“标签提示”?【英文标题】:How to horizontally center "Label hint" in TextInputLayout? 【发布时间】:2021-12-11 04:40:43 【问题描述】:Image of textinputlayout
在上图中,如何将“标签”水平居中?
【问题讨论】:
你可以用这个,也许这是你的答案? titanwolf.org/Network/q/296c80a4-0750-4a93-b40c-eed1749ce93d/y ^这是从***.com/questions/53413119/… 抓取的。仅供参考。 【参考方案1】: <com.google.android.material.textfield.TextInputLayout
android:id="@+id/inputAddress"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
android:layout_
android:layout_
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_
android:layout_
android:gravity="center"
android:text="adas"
android:textSize="@dimen/_10sdp" />
</com.google.android.material.textfield.TextInputLayout>
【讨论】:
以上是关于如何在 TextInputLayout 中水平居中“标签提示”?的主要内容,如果未能解决你的问题,请参考以下文章