我有一个ListFragment,它包含两种子视图:
(1) A View which contains an image from the internet.
(2) A WebView which pulls information from the server.
基本上,listview中的所有列表项都包含Web数据检索。因此,当ListFragment变为不可见时,必须取消所有挂起的请求。
我要做的是重写
public void setUserVisibleHint(boolean isVisibleToUser)
ListFragment中的方法。
但是,我不知道如何在ListFragment中获取对列表项视图的引用。
我能想到的唯一方法是将列表项存储在适配器中。然后我调用ListFragment.getListView.getAdapter然后检索对列表项的引用。但我不确定这是否是解决问题的好方法。感谢。