fragment:找不到id的视图,因为它的父视图已被删除

时间:2018-03-28 10:04:43

标签: android android-fragments android-viewgroup

作为标题,视图包含片段。由于方法.img-display { width: 25%; /* This make photos to aling 4 on a row*/ border: solid 5px white; /* This is for make a white spece between photos */ } 是异步的,因此当片段提交成功时,可以删除片段的父视图。片段无法通过id找到父视图,因此应用程序将崩溃。我该怎么办?

1 个答案:

答案 0 :(得分:0)

您可以尝试以下两种方式之一

在替换

之前检查视图上的null
  if(parentView != null){
     // do commit here
  }

忽略异常以避免崩溃

 try{
   //do commit here
 }catch(Exception ignored){}