RxJava 无法在未调用 Looper.prepare() 的线程中创建处理程序



好的,所以我在我的Android应用程序中使用RxJava可观察对象时遇到了一点麻烦。这是非常令人沮丧的,因为这已经工作了一段时间了,现在才抛出上面的错误。我知道这意味着我正在从另一个线程做一个UI操作,但我不知道在哪里发生。这是可观察对象:

 ConnectionsList.getInstance(this).getConnectionsFromParse(mCurrentUser)
            .delay(3, TimeUnit.SECONDS)
            .flatMap(s -> mainData.getDataFromNetwork(this, mCurrentUser, mSimpleFacebook))
            .flatMap(s -> mainData.getPictureFromUrl(s))
            .subscribeOn(Schedulers.io())
            .observeOn(AndroidSchedulers.mainThread())
            .subscribe(new Observer<Bitmap>() {
                @Override
                public void onCompleted() {
                    if (mCurrentUser.get(Constants.NAME) != null) {
                        mNavNameField.setText((String) mCurrentUser.get(Constants.NAME));
                    }
                    mSearchFragment.setupActivity();
                }
                @Override
                public void onError(Throwable e) {
                    e.printStackTrace();
                    mSearchFragment.setEmptyView();
                }
                @Override
                public void onNext(Bitmap bitmap) {
                    mNavProfImageField.setImageBitmap(bitmap);
                    mainData.saveImageToParse(bitmap); //save the image to Parse backend
                }
            });

经过一些调试后,我发现这个flatmap是错误发生的地方:

.flatMap(s -> mainData.getDataFromNetwork(this, mCurrentUser, mSimpleFacebook))

里面是这样的,我在抛出错误的地方添加了一个注释:

 return Observable.create(subscriber -> {
            //set the username field if ParseUser is not null
            if(currentUser != null) {
                username = (String) currentUser.get(Constants.NAME);
            }
            //if prof pic is null then request from facebook. Should only be on the first login
            if (currentUser != null && currentUser.getParseFile(Constants.PROFILE_IMAGE) == null) {
                if (AccessToken.getCurrentAccessToken() != null) { //check if session opened properly
                    //get simple facebook and add the user properties we are looking to retrieve
                    Profile.Properties properties = new Profile.Properties.Builder()
                            .add(Profile.Properties.FIRST_NAME)
                            .add(Profile.Properties.GENDER)
                            .add(Profile.Properties.BIRTHDAY)
                            .add(Profile.Properties.ID)
                            .add(Profile.Properties.EMAIL)
                            .build();
                    //The following line is where the debugger stops 
                    //and the error gets thrown
                    simpleFacebook.getProfile(properties, new OnProfileListener() {
                        @Override
                        public void onComplete(Profile response) {
                            String id = response.getId();
                            String name = response.getFirstName();
                            String gender = response.getGender();
                            String birthday = response.getBirthday();
                            String email = response.getEmail();
                            String age = getAge(birthday);
                            currentUser.put(Constants.NAME, name);
                            currentUser.put(Constants.AGE, age);
                            currentUser.put(Constants.GENDER, gender);
                            currentUser.put(Constants.EMAIL, email);
                            currentUser.saveInBackground();
                            if (id != null) { //display the profile image from facebook
                                subscriber.onNext("https://graph.facebook.com/" + id + "/picture?type=large");
                            }
                        }

这是怎么回事?它一直工作得很好,现在它说我在一些帮助线程。就我所知,到目前为止我还在UI线程上。如果有人能帮助我,那就太好了,否则我可能不得不暂时放弃RxJava,因为它不适合我。提前感谢!

看起来simpleFacebook.getProfile(properties, listener)调用在内部做它自己的线程。通常您不希望在rxjava中出现这种情况。您希望rxjava负责线程,并且您编写的所有代码都应该是同步的。

我不熟悉Facebook SDK,但我会寻找同步执行请求的调用。因此,一个看起来像public Profile getProfile(Properties properties) {的方法,而不是返回void的方法,并且需要一个侦听器。

相关内容

  • 没有找到相关文章

最新更新