[Accessibility] Missing contentDescription attribute on image

[Accessibility] Missing contentDescription attribute on image

1.遇到这种问题时,基本上是因为adt版本不一致,

2.在adt16中使用<ImageView
  android:src="@drawable/bg" />

3.在高版本ADT中会提示警告,将 android:src="@drawable/bg" />改为android:contentDescription="@drawable/bg"即可

猜你喜欢

转载自jianwang0310.iteye.com/blog/2202979