I have this codes
<ImageView
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_gravity="center_vertical"
android:background="@drawable/tick"
android:contentDescription="img" />
<TextView
android:id="@+id/txt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="text1 "
android:textColor="#fff"
android:textSize="@dimen/sizeNormal" />
and i am having a warning This tag and its children can be replaced by one <TextView/> and a compound drawable
How i can merge them to one textview?
i have tried but in the same time i have tick image dimension problem.
here you can see the image