Image Without `contentDescription`

エラー警告

contentDescriptionとは?

 状態:解決済  閲覧数:5,271  投稿日:2018-05-08  更新日:2018-05-08

アクセシビリティに関する属性


Android4.0で追加された
・「Explore-by-touch mode」が有効な場合、ユーザがタッチした要素のcontentDescriptionにセットされた説明文が読み上げられる

警告表示


Image Without `contentDescription`
Empty contentDescription attribute on image  Non-textual widgets like ImageViews and ImageButtons should use the contentDescription attribute to specify a textual description of the widget such that screen readers and other accessibility tools can adequately describe the user interface.  Note that elements in application screens that are purely decorative and do not provide any content or enable a user action should not have accessibility content descriptions. In this case, just suppress the lint warning with a tools:ignore="ContentDescription" attribute.  Note that for text fields, you should not set both the hint and the contentDescription attributes since the hint will never be shown. Just set the hint. See

警告内容


画像に対するテキスト情報がない

ポイント
・警告なので、これが原因でbuildに失敗することはない
※この警告が表示された状態でもbuild自体は成功する



実際に遭遇した例

 閲覧数:455 投稿日:2018-05-08 更新日:2018-05-08

警告表示


Image Without `contentDescription`

修正前


▼layout/activity_main.xml
<ImageView
   android:id="@+id/imageView3"
   android:layout_width="200dp"
   android:layout_height="200dp"
   android:scaleType="matrix"
   app:layout_constraintBottom_toBottomOf="parent"
   app:layout_constraintStart_toStartOf="parent"
   app:srcCompat="@drawable/lion" />


修正後(ハードコーディング)


android:contentDescription="ライオン"を追加
▼layout/activity_main.xm
<ImageView
   android:id="@+id/imageView3"
   android:layout_width="200dp"
   android:layout_height="200dp"
   android:contentDescription="ライオン"
   android:scaleType="matrix"
   app:layout_constraintBottom_toBottomOf="parent"
   app:layout_constraintStart_toStartOf="parent"
   app:srcCompat="@drawable/lion" />


修正後(推奨)


android:contentDescription="@string/img_txt_lion"を追加
▼layout/activity_main.xm
<ImageView
   android:id="@+id/imageView3"
   android:layout_width="200dp"
   android:layout_height="200dp"
   android:contentDescription="ライオン"
   android:scaleType="matrix"
   app:layout_constraintBottom_toBottomOf="parent"
   app:layout_constraintStart_toStartOf="parent"
   app:srcCompat="@drawable/lion" />


▼values/strings.xml
<resources>
   <string name="app_name">First2 20180504</string>
   <string name="first">はじめて</string>
   <string name="tap_here">ここをタップ!</string>
   <string name="img_txt_lion">ライオン</string>
</resources>



This text field does not specify an inputType or a hint



週間人気ページランキング / 11-17 → 11-23
順位 ページタイトル抜粋 アクセス数
1 インポートされた ★★ は見つかりません | エラー 45
2 この行に複数マーカーがあります | エラー(エラー) 31
3 public 型 ★★ はそれ独自のファイル内に定義されなければなりません | エラー 24
4 「Android Studio 3.0.1」で、デザインプレビュー画面が表示されない。「waiting build for finish」が終わらない | Android Studio(IDE) 19
5 いくつかのプロジェクトは、ワークスペース・ディレクトリーにすでに存在するため、インポートできません | エラー 18
6 Androidエミュレータで、PCキーボード入力を有効にしたい | エミュレータ(環境構築) 17
7 ○○は解決できないか、フィールドではありません | エラー(エラー) 16
8 内部エラーの表示中に内部エラーが発生しました | エラー 7
8 プラグイン "org.eclipse.ui.workbench" からのコードの起動で問題が発生しました | エラー(エラー) 7
9 ★★ を型に解決できません | エラー(エラー) 6
9 Android Studio で、ソースコードが改行できない | Android Studio(IDE) 6
10 「Vector Asset 」が開けない。[File] → [New] したのに [Vector Asset]が表示されない | Android Studio(IDE) 5
11 既存プロジェクトがインポート出来ない | プロジェクト(環境構築) 4
11 Eclipseが起動しない … ユーザ操作は待機中です | Eclipse(IDE) 4
11 Context を変数に解決できません | エラー(エラー) 4
11 values-ja/strings.xmlに記載した内容が反映されない | 多言語化(環境構築) 4
11 「Android Studio 3.1.2」で「Propertiesペイン」が表示されない | Android Studio(IDE) 4
12 Apache Maven がインストール出来ない | Apache Maven(環境構築) 3
12 エラーが発生しました。ログ・ファイル ★★.log.を参照してください | エラー(エラー) 3
12 Invalid property category path: ValidationPropertiesPage (bundle: org.eclipse.wst.xml.ui, propertyPage: org.eclipse.wst.xml.ui.propertyPage.project.validation) | 警告(エラー) 3
2024/11/24 1:01 更新