gpt4 book ai didi

android - 使用 Otto 进行改造 - 未调用订阅

转载 作者:行者123 更新时间:2023-11-29 00:09:11 25 4
gpt4 key购买 nike

我在这个问题上花了很多时间,但仍然找不到正确的方法。希望有人能提供帮助。

情况

我的应用需要使用 Retrofit with Otto 下载远程数据。大多数工作已经完成,除了 Otto 的订阅者从未接到电话。

  • 下载改造后的数据,完成
  • 实现改造回调,完成
  • 发布者将回调结果发布到 otto 事件总线,完成
  • 订阅者从 otto 事件总线获取结果,而不是调用

问题

  • Otto 的用户从未被调用过。

代码

我的应用程序.java

     public class MyApplication extends Application{
private static Bus mBus;
@Override
public void onCreate() {
super.onCreate();
}

public static Bus getEventBus() {
if(mBus==null) {
mBus = new Bus(ThreadEnforcer.ANY);
}
return mBus;
}
}

MyFavouriteFragment.java

public class MyFavouriteFragment extends Fragment implements AdapterView.OnItemClickListener {

public MyFavouriteFragment() {
}

public static MyFavouriteFragment newInstance() {
MyFavouriteFragment fragment = new MyFavouriteFragment();
return fragment;
}

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.d(MainActivity.TAG, "oncreate register bus");
MyApplication.getEventBus().register(getActivity());
}


@Override
public void onResume() {
super.onResume();
}

@Override
public void onPause() {
super.onPause();
MyApplication.getEventBus().unregister(getActivity());
}

public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);

// apply first download before setOnScrollListener
downloadAds(0);
}


private void downloadAds(final int getAdFromIndex) {
// download data from server
RestClient.getApiService().getFavouriteAd(
getAdFromIndex,
Constant.numOfAdPerFetch,
userId,
true,
new GetMyFavouriteAd.Callback());
}

// This one never get called !!!!!!!!!!!!!!!!!!!!!!!!!!
@Subscribe
public void onGetMyFavouriteAdEvent(GetMyFavouriteAd.GetMyFavouriteAdEvent event){
Log.d(MainActivity.TAG, "onGetMyFavouriteAdEvent");
postDownloadSetup();
}

@Subscribe
public void onRetrofitErrorEvent(RetrofitErrorEvent event){
Log.d(MainActivity.TAG, "getFavouriteAd failed " + event.getError().toString());
postDownloadSetup();
}
}

GetMyFavouriteAd.java

 public class GetMyFavouriteAd {

public static final class Callback implements retrofit.Callback<List<GenericAd>> {
@Override
public void success(List<GenericAd> genericAdList, Response response) {
Log.d(MainActivity.TAG, "GetMyFavouriteAd call back");
MyApplication.getEventBus().post(new GetMyFavouriteAdEvent());
}

@Override
public void failure(RetrofitError error) {
Log.d(MainActivity.TAG, "GetMyFavouriteAd call back failed");
MyApplication.getEventBus().post(new RetrofitErrorEvent(error));
}
}

// Otto Event
public static final class GetMyFavouriteAdEvent {
List<GenericAd> genericAdList;
Response response;

public GetMyFavouriteAdEvent(){
// this one get called successfully
Log.d(MainActivity.TAG, "ini GetMyFavouriteAdEvent");
}

public List<GenericAd> getGenericAdList() {
return genericAdList;
}

public void setGenericAdList(List<GenericAd> genericAdList) {
this.genericAdList = genericAdList;
}

public Response getResponse() {
return response;
}

public void setResponse(Response response) {
this.response = response;
}
}
}

RestClient.java

  public class RestClient {
private static ApiService apiService;

public static ApiService getApiService() {
if (apiService == null) {
RestAdapter restAdapter = new RestAdapter.Builder()
.setLogLevel(RestAdapter.LogLevel.FULL)
.setEndpoint(Constant.baseUri)
.build();
apiService = restAdapter.create(ApiService.class);
}

return apiService;
}
}

APIService.java

  public interface ApiService {
// get favourite ad
@FormUrlEncoded
@POST("/getFavouriteAdByUserId.php")
void getFavouriteAd(
@Field("getAdFromIndex") int getAdFromIndex,
@Field("numOfAdPerFetch") int numOfAdPerFetch,
@Field("userId") String userId,
// true to return ad.*, false to return adId only
@Field("getAdDetails") boolean getAdDetails,
Callback<List<GenericAd>> cb
);
}

最佳答案

注册/注销 fragment 而不是 Activity

 MyApplication.getEventBus().register(getActivity());

 MyApplication.getEventBus().register(this);

注销也是一样

关于android - 使用 Otto 进行改造 - 未调用订阅,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31524457/

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