This is my code:
<TextView android:id="@+id/error_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="2dp" android:drawablePadding="5dp" android:gravity="center" android:drawableRight="@drawable/error_image" android:textColor="#aa0000" android:textStyle="bold" android:textSize="16dp"/>
I have a drawable that I want to set it invisible, and then when an error appears, drawable appears. How can i do this?
source share