1. 程式人生 > >一個容易忽視的bug之 Unable to inflate view tag without class attribute

一個容易忽視的bug之 Unable to inflate view tag without class attribute

<view
    android:layout_marginLeft="10dp"
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="#ff0000" />

以上程式碼報Unable to inflate view tag without class attribute異常,不仔細看還找不到問題所在,view不小心小寫了,應該大寫,特此記錄一下。

<View
    android:layout_marginLeft="10dp"
    
android:layout_width="match_parent" android:layout_height="1dp" android:background="#ff0000" />