bug原因:
当fragment切换时,list数据没有被清除,所以导致在此切换fragemnt又重复加载了list数据。
解决方法:
当fragment不可见时,清除数据
@Override public void onStop() { super.onStop(); homeContentList.clear(); }
2023-11-05 10:38:40
bug原因:
当fragment切换时,list数据没有被清除,所以导致在此切换fragemnt又重复加载了list数据。
解决方法:
当fragment不可见时,清除数据
@Override public void onStop() { super.onStop(); homeContentList.clear(); }
下一篇:Kafka简介