remove additional underline in EditText

前端 未结 5 1082
广开言路
广开言路 2020-12-07 02:40

I have EditText with custom background drawable:

EditText code:



        
5条回答
  •  太阳男子
    2020-12-07 03:18

    As per my understanding. Use this in your editText

    android:background="@android:color/transparent"
    

    And If you want to stop Spell Checker for Text which you had typed then use

    android:inputType="textNoSuggestions"
    

提交回复
热议问题