有人可以解释为什么会崩溃吗?我两次完全一样。我的logcat说它是int FN行,所以如果我注释掉int FN行,它将继续。但我需要得到两个标签,而不仅仅是一个。
我在资源中设置了我的ID
<resources>
<item type="id" name="fromNumberTag" />
<item type="id" name="contactImageTag"/>
</resources>
我在我的适配器中设置了我的标签。
// SET OUR DATA FROM OUR CURSOR
String phone_number = list.getString( list.getColumnIndex("phoneNumber"));
from.setTag(R.id.fromNumberTag,list.getString(list.getColumnIndex("contactId")));
contactimage.setTag(R.id.contactImageTag, phone_number);
然后我尝试获取标签。 (这就是在哪里崩溃)
int cid = Integer.parseInt(listText.getTag(R.id.fromNumberTag).toString());
int fn = Integer.parseInt(listText.getTag(R.id.contactImageTag).toString()); // LOGCAT SAYS THIS LINE IS WHERE ERROR OCCURS
我的logcat
java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String java.lang.Object.toString()' on a null object reference
at myapp.myapp.MainActivity$2.onItemClick(MainActivity.java:272)