Battleprof
Lurker
I'm developping an app:
there is main TabActivity, which has two tabs with two different Activities.
In one of them I have
PrepareRequestTokenActivity executes OAuth authentification using a browser and when it's done, has these lines
And, finally, I have onActivityResult method in Activity, which I was starting ActivityForResult from
As I see logs, result is set correctly, but there is no call of onActivityResult
What can be the problem?
Or should I provide the whole project to let you help me?
there is main TabActivity, which has two tabs with two different Activities.
In one of them I have
Code:
Intent i = new Intent(getApplicationContext(), PrepareRequestTokenActivity.class);
startActivityForResult(i, OAUTH_REQUEST);
PrepareRequestTokenActivity executes OAuth authentification using a browser and when it's done, has these lines
Code:
setResult(RESULT_OK, null);
finish();
And, finally, I have onActivityResult method in Activity, which I was starting ActivityForResult from
Code:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {...}
As I see logs, result is set correctly, but there is no call of onActivityResult

What can be the problem?
Or should I provide the whole project to let you help me?