Hi I want to change the Spinner text color using the text watcher.Spinner text should change color based on the character entered in edittext or empty edittext.
<Spinner
android:id="@+id/displacement"
android:layout_width="0dp"
android:layout_height="40dp"
android:layout_weight=".15"
android:entries="@array/array_metric_piston"
android:gravity="center"
android:paddingEnd="1dp"
android:paddingStart="1dp"
android:background="@drawable/editext_green"
/>
Tried as below but not working
if(charSequence.length() >0 ) {
spin_motor_displacement.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
((TextView) spin_motor_displacement.getRootView()).setTextColor(Color.RED);
}
});
}
add this custom adapter in your code
and dont forget to call it: