gpt4 book ai didi

java - 如何去除 Android Material Design 中 TextInputLayout 下的下划线?

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

我试图从名为 TextInputLayout 的 Material 设计组件中删除下划线。我已经尝试了 SO 的几个不同答案,但对我来说没有用,所以我决定问我自己的问题。

如何去掉这条下划线?

enter image description here

XML:

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/_10sdp"
style="?colorOnPrimary"
app:boxCornerRadiusTopEnd="@dimen/_5sdp"
app:boxCornerRadiusTopStart="@dimen/_5sdp"
app:startIconContentDescription="Heading">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/input_heading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/ubuntubold"
android:hint="Heading"
android:inputType="text" />

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

最佳答案

正如 Material 设计指南中所述,这是 TextInputLayout 的激活指示器。

检查 Activation indicator attributes了解详情。

一种解决方案是在您的应用中覆盖其中一些属性。

或者你可以这样做:

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/_10sdp"
style="?colorOnPrimary"
app:boxCornerRadiusTopEnd="@dimen/_5sdp"
app:boxCornerRadiusTopStart="@dimen/_5sdp"
app:startIconContentDescription="Heading"
app:boxStrokeWidth="0dp"
app:boxStrokeWidthFocused="0dp">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/input_heading"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/ubuntubold"
android:hint="Heading"
android:inputType="text" />

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

检查 app:boxStrokeWidth="0dp"app:boxStrokeWidthFocused="0dp"

关于java - 如何去除 Android Material Design 中 TextInputLayout 下的下划线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65458008/

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