问题:Caused by: android.view.InflateException: Binary XML file line #11: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference
解析问题:这个是系统解析xml时出现错误,那么说明问题所在就是您的xml里的控件声明有误。
问题举例:如
<View android:layout_width="1dp" android:layout_height="match_parent"
android:background="@drawable/top_bar_divider"/>
出现问题的原因:大家都很容易把View写出小写view。那么这样就会报错。