I found a typo in android developer resource site.

http://developer.android.com/resources/faq/commontasks.html

Returning a Result from a Screen

// Listen for results.
protected void onActivityResult(int requestCode, int resultCode,
Intent data){
    // See which child activity is calling us back.
    switch (resultCode) {            <--  this should be requestCode.
        case CHOOSE_FIGHTER:
        ...
...
}

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to