錯誤:「Binary XML file line # : Error inflating class」android
緣由:此異常是佈局文件中有錯引發的,那麼返回到佈局文件中看看。佈局
<?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」,就是說圖片缺乏文本說明。。。。,找到地方就知道怎麼辦了,缺乏說明就給他加一個嘛。spa
android:contentDescription="@string/icon_description"
加上這個屬性後問題就解決了,so。。。這些小細節需多注意,儘可能避免這樣的錯吧~.net
另:也可參考這位朋友的方案——Android運行時異常「Binary XML file line # : Error inflating class」。code