How to clear ListView on Fragment when back button pressed?

前端 未结 4 1905
隐瞒了意图╮
隐瞒了意图╮ 2021-01-21 12:53

All data from that ListView is provided by a CursorAdapter. Whenever I pressed back button and return to activity, then c

4条回答
  •  暖寄归人
    2021-01-21 13:09

    you can try

          try {
               arraylist.clear();
               listView.removeAllViews();
            }catch (Exception e){
    
            }
    

提交回复
热议问题