遇到这个错误:
Caused by:
java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference
1、可能布局文件 中View标签没有大写,例如
<View android:layout_width="match_parent" android:layout_height="0.5dp" android:background="@color/gray" />
而不应该是
<view android:layout_width="match_parent" android:layout_height="0.5dp" android:background="@color/gray" />
2、可能布局文件中 id用的不是小写,用大写id也会出现这种错误,例如:
应该是
<View
android:id="@+id/cedit_id"
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/gray" />
而不是ceditId
<View
android:id="@+id/ceditId"
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/gray" />