gpt4 book ai didi

java - 我正在使用 web api 进行数据同步服务

转载 作者:行者123 更新时间:2023-11-30 00:35:55 27 4
gpt4 key购买 nike

我正在处理数据同步服务,我正在从网络服务器获取 json 响应。我的问题是如何将该响应传递给我从中调用该服务的 Activity 。

最佳答案

您可以使用 EventBus 并通过订阅事件将数据发送到所需的 Activity 。

例如:

compile 'org.greenrobot:eventbus:3.0.0'

事件总线类

public class DataSyn {
public final List<YourModel> YourModel;

public DataSyn(List<YourModel> YourModel) {
this.YourModel = YourModel;
}
}

从您的响应中发送数据:

   EventBus.getDefault().post(new DataSyn(yourdataList));

Subscribe and Receive the Data wherever you need:


@Override
public void onStart() {
super.onStart();
EventBus.getDefault().register(this);
}

@Override
public void onStop() {
EventBus.getDefault().unregister(this);
super.onStop();
}

@Subscribe(threadMode = ThreadMode.MAIN)
public void onDataRecevied(DataSyn event) {
if (event.YourModel != null) {
populateData(event.YourModel);
}
}

以上是最简单的数据共享方式

关于java - 我正在使用 web api 进行数据同步服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43410863/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com