I have EditText with custom background drawable:
EditText code:
<EditText
android:id="@+id/etName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@{ViewModel.isAllowEdit ? @drawable/profile_et_background_active : @drawable/profile_et_background}"
android:inputType="@{ViewModel.isAllowEdit ? InputType.TYPE_CLASS_TEXT : InputType.TYPE_NULL}"
android:text="@={ViewModel.name}"
android:textColor="@color/main_dark_text_color" />
I'm using android databinding library and MVVM architecture.
If ViewModel has isAllowEdit set to true than EditText background set to @drawable/profile_et_background_active.
If isAllowEdit false EditText has background set to @drawable/profile_et_background.
Also i'm disallow edit by setting inputType to TYPE_NULL, and allow edit by setting inputType to TYPE_CLASS_TEXT.
@drawable/profile_et_background_active code:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@android:color/transparent" />
</shape>
</item>
<item
android:left="-2dp"
android:right="-2dp"
android:top="-2dp">
<shape>
<solid android:color="@android:color/transparent" />
<stroke
android:width="1dp"
android:color="@color/main_elements_line_color" />
</shape>
</item>
</layer-list>
@drawable/profile_et_background code:
<item>
<shape android:shape="rectangle">
<solid android:color="@android:color/transparent" />
</shape>
</item>
When edit is allowed and user start typing text in EditText additional underline appears under typed word (it belongs only to currently typed word, all other parts of EditText text has no underline):
I tried to remove that underline by adding color filter to EditText:
et.setColorFilter(getResources().getColor(android.R.color.transparent), PorterDuff.Mode.SRC_IN)
But it doesn't work.
How can i remove that extra underline ?
UPDATE 1
I already tried to add @android:color/transparent, and I'm getting error:
"java.lang.Integer cannot be cast to android.graphics.drawable.Drawable"
when changing "@{ViewModel.isAllowEdit ? @drawable/profile_et_background_active : @drawable/profile_et_background}"
to "@{ViewModel.isAllowEdit ? @drawable/profile_et_background_active : @android:color/transparent}"
UPDATE 2
Adding InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS does not work for me. So i guess this is not Spell Checker's problem.
See Question&Answers more detail:
os