UdhayaBalaji / androidannotations

Automatically exported from code.google.com/p/androidannotations
0 stars 0 forks source link

@OnResult to handle activity results #154

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Idea by mat.boniface on issue 143:

Instead of having to implement this :

protected  void onActivityResult(int requestCode, int resultCode, Intent data) {
 // Switch based on request code here
}

We could have an @OnResult(REQUEST_CODE) annotation, and the switch would be 
done by AndroidAnnotations

@OnResult(FOO_REQUEST_CODE)
void myFooResult(int resultCode, Intent data) {

}

@OnResult(BAR_REQUEST_CODE)
void myBarResult(int resultCode, Intent data) {

}

Original issue reported on code.google.com by py.ricau on 30 Dec 2011 at 7:18

GoogleCodeExporter commented 8 years ago
https://github.com/excilys/androidannotations/issues/28

Original comment by py.ricau on 6 Jan 2012 at 4:09