一部のウィジェットには定数contentDescription
が適していますが、キャプション付きの画像ギャラリーなどの他のケースでは、UI に適切なアクセシビリティ ラベルが既にあります。を XMLImageView
のcontentDescription
ラベル付けにリンクする方法はありますか?Textview
たとえば、このImageView
定義の最後の (架空の) 行に実際に相当するものはありますか?
<LinearLayout>
<ImageView
android:id="@+id/image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:contentDescription="@+id/label" />
<TextView
android:id="@+id/label"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>