ANDROID开发之问题积累及解决方案

Posted 彳亍者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ANDROID开发之问题积累及解决方案相关的知识,希望对你有一定的参考价值。

错误:“Binary XML file line # : Error inflating class”

原因:此异常是布局文件中有错引起的,那么返回到布局文件中看看。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <ImageView 
        android:id="@+id/disclosureImg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_alignParentLeft="true"/>
    
    <TextView 
        android:id="@+id/contentText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_toRightOf="@id/disclosureImg"/>
    

</RelativeLayout>

在imageview处有个黄感叹号,鼠标放上去显示“[Accessibility] Missing contentDescription attribute on image”,就是说图片缺少文本说明。。。。,找到地方就知道怎么办了,缺少说明就给他加一个嘛。

android:contentDescription="@string/icon_description"

加上这个属性后问题就解决了,so。。。这些小细节需多注意,尽量避免这样的错吧~

另:也可参考这位朋友的方案——Android运行时异常“Binary XML file line # : Error inflating class”

以上是关于ANDROID开发之问题积累及解决方案的主要内容,如果未能解决你的问题,请参考以下文章

我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情

C++ 代码片段(积累)

QT 实用代码片段

Python 自动化 - 浏览器chrome打开F12开发者工具自动Paused in debugger调试导致无法查看网站资源问题原因及解决方法,javascript反调试问题处理实例演示(代码片段

Android开发常用代码片段

Android 65K问题之Multidex原理分析及NoClassDefFoundError的解决方法