Skip to content

StartActivityForResult() / OnActivityResult() using RxJava

Notifications You must be signed in to change notification settings

WePlanet/TedRxOnActivityResult

 
 

Repository files navigation

What is TedRxOnActivityResult

When we use startActivityForResult(), we have to receive result/data in onActivityResult().

 @Override
  protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    ...
    
    startActivityForResult(intent,REQ_CODE_AAA);
    
  }

  @Override
  protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    switch (requestCode){
      case REQ_CODE_AAA:
        if(resultCode==RESULT_OK){
          doSomething();
        }
        break;
      default:
        super.onActivityResult(requestCode, resultCode, data);    
    }
    
  }

This is very complex and inconvenience to us.

If you use RxJava, you want chaining like this.

  AA()
  .filter(...)
  .subscribeOn(...)
  .observeOn(...)
  .subscribe(...);

TedRxOnActivityResult can make startActivityForResult() chaining.





Setup

You can select library according to your RxJava version.

RxJava1

Maven Central

repositories {
  google()
  mavenCentral()
} 

dependencies {
    compile 'io.github.ParkSangGwon:tedonactivityresult-rx1:x.y.z'
}

RxJava2

Maven Central

repositories {
  google()
  mavenCentral()
} 

dependencies {
    compile 'io.github.ParkSangGwon:tedonactivityresult-rx2:x.y.z'
}

Normal

Even if you don't use RxJava, you can use this library.

Maven Central

repositories {
  google()
  mavenCentral()
} 

dependencies {
    compile 'io.github.ParkSangGwon:tedonactivityresult:x.y.z'
}





How to use

RxJava

RxJava1/RxJava2 can write code like this.

TedRxOnActivityResult.with(this)
    .startActivityForResult(intent)
    .subscribeOn(...)
    .observeOn(...)
    .subscribe(activityResult -> {

      if (activityResult.getResultCode() == RESULT_OK) {
        Intent data = activityResult.getData();
        String name = data.getStringExtra(SampleActivity.EXTRA_NAME);
        int age = data.getIntExtra(SampleActivity.EXTRA_AGE, -1);
      }

    });

Normal

Also you can use OnActivityResultListener not RxJava's chaining style

TedOnActivityResult.with(this)
    .setIntent(intent)
    .setListener((resultCode, data) -> {
       if (resultCode == RESULT_OK) {
        String name = data.getStringExtra(SampleActivity.EXTRA_NAME);
        int age = data.getIntExtra(SampleActivity.EXTRA_AGE, -1);
      }

    })
    .startActivityForResult();





License

Copyright 2017 Ted Park

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

StartActivityForResult() / OnActivityResult() using RxJava

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%