一、Activity中调用P层
@Override
protected void onDestroy() {
super.onDestroy();
if (cartPresenter!=null){
cartPresenter.destory();
}
}
二、P层里面调用
public void destory(){
if (homeFragment!=null){
homeFragment =null;
}
}