Android の ImageView でこの警告が表示されるのはなぜですか?
<ImageView
android:id="@+id/user_image"
android:layout_width="30dip"
android:layout_height="30dip" />
ImageView で属性「android:contentDescription」を設定する必要があります。
例 :
<ImageView
android:id="@+id/user_image"
android:layout_width="30dip"
android:layout_height="30dip"
android:contentDescription="@string/imageViewDescription" />
この警告は、ImageView が彼のコンテンツを短いテキストで説明していることを確認するためにスローされます。