报错android.view.InflateException: Binary XML file line #11: Attempt to invoke virtual method 'boolean

出现这种问题,打开Android monitor的调试信息发现是 android.view.InflateException: Binary XML file line #11: Attempt to invoke virtual method 'boolean。。。

    后经过查找,发现:

<view
        android:layout_width="1dp"
        android:layout_height="match_parent"
        android:layout_alignParentLeft="true"
        android:background="#000"/>

这里View应该大写。

原文地址:https://www.cnblogs.com/JasonLGJnote/p/8512577.html