Remove underline when typing to word in EditText or removing undine on editText
programatically yourEditText.setOnFocusChangeListener { view, hasFocus -> onFocusChange(view,hasFocus) yourEditText.inputType=InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD }
or xml
android:inputType="textVisiblePassword" android:background="@null"