gpt4 book ai didi

android - 如何使用 OutlinedBox 样式从 TextInputLayout 中删除 float 标签?

转载 作者:行者123 更新时间:2023-12-04 00:28:28 25 4
gpt4 key购买 nike

有没有办法在 TextInputLayout 时删除 float 标签(提示)?是否处于专注模式?

当我尝试设置 app:hintEnabled="false"并在 TextInputeEditText 内提示, TextInputLayout通过隐藏顶部笔画表现得很奇怪。

<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Text">

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content" />

</com.google.android.material.textfield.TextInputLayout>

重要的是我在版本 1.1.0-alpha01. 中使用 Material 组件

编辑

这就是它的样子(当输入没有聚焦时):

Screenshot

顶部行程被切断。

最佳答案

是的,有一种相当简单的方法可以删除 float 标签提示,并且在您的 TextInputLayout 中只有一个提示。 .
这可以通过禁用 TextInputLayout 中的提示轻松实现。 ,并在 TextInputEditText 上设置提示而不是 TextInputLayout像这样:

<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:hintEnabled="false">

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="hint text comes here" />

</com.google.android.material.textfield.TextInputLayout>
结果如下所示: enter image description here
当添加一些文本时,它将如下所示: enter image description here
我在 Material Components v1.2.0 中试过了

关于android - 如何使用 OutlinedBox 样式从 TextInputLayout 中删除 float 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54434586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com