'Missing contentDescription attribute on image' in XML

后端 未结 9 2205
挽巷
挽巷 2020-11-28 17:49

I get an warning about [Accessibility]Missing contentDescription attribute on image in eclipse. This warning show at line 5 (declare ImageView)

9条回答
  •  星月不相逢
    2020-11-28 18:46

    It is giving you the warning because the image description is not defined.

    We can resolve this warning by adding this code below in Strings.xml and activity_main.xml

    Add this line below in Strings.xml

    Background Picture
    you image will be like that:
    
    

    Also add this line in activity_main.xml

    android:contentDescription="@string/imgDescription"
    

    Strings.xml

    
        Saini_Browser
        textView2
        BackGround Picture
    
    

提交回复
热议问题