Remove underline from TextInputEditText

后端 未结 13 2296
我寻月下人不归
我寻月下人不归 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:26

    Note: This answer about removing the underline while typing in TextInputEditText

    After searching 6 hours about how to remove the underline from TextInputEditText, I found a single line solution, its just put android:inputType="text|textNoSuggestions" inside your TextInputEditText.

    Now i am not getting any underline while typing in TextInputEditText

提交回复
热议问题