动态加载fragment以后,调用了remove方法移除Fragment,在返回来的时候报 Attempt to write to field 'int android.support.v4.app.Fragment.mNextAnim' 空指针 这是因为,在Fragment为null的时候就调用的remove,解决办法是remove的时候返回是否Fragment为null,为null就不用执行remove方法 It's because you are calling remove() add(…