gpt4 book ai didi

android - 从 TextInputEditText 中删除底线

转载 作者:行者123 更新时间:2023-11-30 05:02:08 24 4
gpt4 key购买 nike

我需要删除 TextInputEditText 的底线我将背景设置为透明和 null 但没有任何效果。

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_textinput_layout"
android:hint="@string/app_name">

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

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

bg_textinput_layout

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android">

<solid android:color="@color/white"/>

<stroke android:width="@dimen/spacing_1"
android:color="@color/hint_text_color"/>
</shape>

最佳答案

您可以应用 app:boxStrokeWidth="0dp"app:boxStrokeWidthFocused="0dp" (或使用具有与 boxBackgroundColor 相同值的选择器的 app:boxStrokeColor 属性。

   <com.google.android.material.textfield.TextInputLayout
app:boxStrokeWidth="0dp"
app:boxStrokeWidthFocused="0dp"
...>

enter code here

对于没有背景和边框的白框:

<com.google.android.material.textfield.TextInputLayout
app:boxStrokeWidth="0dp"
app:boxStrokeWidthFocused="0dp"
app:boxStrokeColor="#FFF"
app:boxBackgroundColor="#FFF"
...>

enter image description here

关于android - 从 TextInputEditText 中删除底线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58079140/

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