Remove underline from TextInputEditText

后端 未结 13 2287
我寻月下人不归
我寻月下人不归 2021-01-04 01:10

I have an android screen which takes email from the user. Below is the snippet of the code, I want to remove the underline which appears below the text.

<         


        
13条回答
  •  滥情空心
    2021-01-04 01:42

    If you want to use the filled box then below code perfectly work for me.

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

    add above lines in the input layout.

提交回复
热议问题