Why do i get this warning in ImageView in android?
<ImageView
android:id="@+id/user_image"
android:layout_width="30dip"
android:layout_height="30dip" />
Why do i get this warning in ImageView in android?
<ImageView
android:id="@+id/user_image"
android:layout_width="30dip"
android:layout_height="30dip" />
You have to set the attribute "android:contentDescription" in your ImageView.
Example :
<ImageView
android:id="@+id/user_image"
android:layout_width="30dip"
android:layout_height="30dip"
android:contentDescription="@string/imageViewDescription" />
This warning is thrown to be sure that your ImageView describes his content by a brief text.