我正在使用EventBus在成功生成http请求时将结果发布到片段。当有一个订阅者和一个发布者关系时,这很好用。
但是,在我的应用程序中,我有一个使用ViewPager
标签的屏幕。由于页面非常相似,我使用与每个选项卡对应的不同参数的相同片段来下载数据。
片段看起来像这样:
public class MyFragment extends Fragment{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
EventBus.getDefault().register(this);
}
public void onEvent(ServerResponse response) {
updateUi(response);
}
@Override
public void onDestroy() {
super.onDestroy();
EventBus.getDefault().unregister(this);
}
}
您可能已经猜到收到数据时会发生什么。
由于许多订阅者具有相同的签名,等待ServerResponse
,响应不会转到相应的选项卡,但是每个片段都会收到并显示相同的响应,并且数据得到混合
你知道如何解决这个问题吗?
答案 0 :(得分:2)
开平!这里也有同样的问题,但我有一个解决方案。
问题是你有很多Fragments
(来自同一个对象的实例)并且所有这些实例都在监听同一个事件,所以当你发布一个事件时它们都会被更新。
发布活动时,请尝试发送一个位置,当您实例化Fragment
时,需要存储页面适配器位置。在检查事件是否与Fragment
的位置相同时。
例如:
public static QuestionFragment newInstance(int position) {
QuestionFragment fragment = new QuestionFragment();
Bundle args = new Bundle();
args.putInt(ARG_POSITION, position);
fragment.setArguments(args);
return fragment;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
vMain = inflater.inflate(R.layout.fragment_question, container, false);
EventBus.getDefault().post(new GetQuestionEvent(mPosition));
return vMain;
}
public void onEvent(GetQuestionEvent e) {
if (e.getQuestion().getPosition() == mPosition) {
TextView tvPostion = (TextView) vMain.findViewById(R.id.tv_position);
tvPostion.setText("" + e.getQuestion().getPosition());
}
}