Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么我在 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 通过简短的文本描述他的内容。