如何在 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 中水平居中“标签提示”?的主要内容,如果未能解决你的问题,请参考以下文章

如何在div中水平居中绝对按钮? [复制]

如何在 div 元素中水平居中按钮元素?

如何在 div 中水平居中对齐 ul

如何在 Tailwind CSS 中水平居中导航栏内容

在GridPane JAVAFX中水平居中一行

如何使用代码在另一个面板中水平居中面板?