Answers for "android edittext underline color"

2

edittext color

<EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Underline color change"
        android:backgroundTint="@android:color/holo_red_light" />  -this line-
Posted by: Guest on May-20-2020
1

android kotlin change text color

// Android kotlin changing text color

// like this
android:textColor="#454545"
Posted by: Guest on October-14-2020
0

text.settextcolor android

//From API 23 onward, getResources().getColor() is deprecated.
textView.setTextColor(ContextCompat.getColor(getApplicationContext(), R.color.color_black));
Posted by: Guest on March-03-2021
0

android edittext underline color

<EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="Underline color change"
        app:backgroundTint="@android:color/holo_red_light" />
Posted by: Guest on July-13-2021

Code answers related to "android edittext underline color"

Browse Popular Code Answers by Language