2014年1月1日水曜日

ImageViewの警告[Accessibility] Missing contentDescription attribute on image

ImageViewを使うと以下の警告が出る場合。
>[Accessibility] Missing contentDescription attribute on image

ImageViewのプロパティcontentDescriptionに値の設定がない事が理由
よって以下のように書いておけばよい。

<ImageView
    android:contentDescription="@null"

画像が表示できなかった場合の代替え文字列でしょうか。
必要であれば@nullではなく適当な文字列を与えればよい。

@nullは空文字列のようですが、リファレンスに記載がないような、
私が見つけられないだけのような。todo

0 件のコメント:

コメントを投稿