Received Intent at 'onActivityResult' don't contain my extras
I've got some trouble with receive extras from a second activity.
in Activit A:
...
// start Activity B
Intent i = new Intent(getBaseContext(), ActivityB.class
startActivityForResult(i, 0);
...
protected void onActivityResult(int requestCode, int resultCode, Intent data){
// get the extras from data
String extra = data.getExtras().getString("EXTRA1");
}
In Activity B:
...
Intent i = new Intent();
i.putExtra("EXTRA1","any useless text");
this.setResult(0, i);
this.finish();
...
The problem is that - back in Activity a - no extras are contained in data at 'onActivityResult'.
Was is wrong here?
android android-intent onactivityresult
add a comment |
I've got some trouble with receive extras from a second activity.
in Activit A:
...
// start Activity B
Intent i = new Intent(getBaseContext(), ActivityB.class
startActivityForResult(i, 0);
...
protected void onActivityResult(int requestCode, int resultCode, Intent data){
// get the extras from data
String extra = data.getExtras().getString("EXTRA1");
}
In Activity B:
...
Intent i = new Intent();
i.putExtra("EXTRA1","any useless text");
this.setResult(0, i);
this.finish();
...
The problem is that - back in Activity a - no extras are contained in data at 'onActivityResult'.
Was is wrong here?
android android-intent onactivityresult
add a comment |
I've got some trouble with receive extras from a second activity.
in Activit A:
...
// start Activity B
Intent i = new Intent(getBaseContext(), ActivityB.class
startActivityForResult(i, 0);
...
protected void onActivityResult(int requestCode, int resultCode, Intent data){
// get the extras from data
String extra = data.getExtras().getString("EXTRA1");
}
In Activity B:
...
Intent i = new Intent();
i.putExtra("EXTRA1","any useless text");
this.setResult(0, i);
this.finish();
...
The problem is that - back in Activity a - no extras are contained in data at 'onActivityResult'.
Was is wrong here?
android android-intent onactivityresult
I've got some trouble with receive extras from a second activity.
in Activit A:
...
// start Activity B
Intent i = new Intent(getBaseContext(), ActivityB.class
startActivityForResult(i, 0);
...
protected void onActivityResult(int requestCode, int resultCode, Intent data){
// get the extras from data
String extra = data.getExtras().getString("EXTRA1");
}
In Activity B:
...
Intent i = new Intent();
i.putExtra("EXTRA1","any useless text");
this.setResult(0, i);
this.finish();
...
The problem is that - back in Activity a - no extras are contained in data at 'onActivityResult'.
Was is wrong here?
android android-intent onactivityresult
android android-intent onactivityresult
asked Nov 22 '18 at 22:10
chris83chris83
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You put your immediate result in an Intent
, so you should call data.getStringExtra("EXTRA1')
instead of data.getExtras().getString("EXTRA1")
because it only returns an empty Bundle
.
Also your requestCode
should be greater than 0:
int: If >= 0, this code will be returned in onActivityResult() when the > activity exits
ok - but the problem is, that 'data' do not contain the extra. How shall i put the extra to the intnent correctly to return the value?
– chris83
Nov 23 '18 at 7:25
You can put the String in a new Bundle, then put the bundle to the Intent via putExtras. I think I had a typo in my answer, not sure if that confused you, but I've updated the answer.
– Aaron
Nov 23 '18 at 7:40
Intent i = new Intent(); Bundle b = new Bundle(); b.putString("EXTRA1", "iany useless content"); i.putExtras(b); setResult(0, i); finish(); ==> same result in onActivityResult: data don't contain extras
– chris83
Nov 23 '18 at 7:42
Your requestCode should be greater than 0 developer.android.com/reference/android/app/…
– Aaron
Nov 23 '18 at 7:58
ok - now with requestCode 1: still no extras in data at onActivityResult
– chris83
Nov 23 '18 at 8:44
|
show 5 more comments
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53438512%2freceived-intent-at-onactivityresult-dont-contain-my-extras%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You put your immediate result in an Intent
, so you should call data.getStringExtra("EXTRA1')
instead of data.getExtras().getString("EXTRA1")
because it only returns an empty Bundle
.
Also your requestCode
should be greater than 0:
int: If >= 0, this code will be returned in onActivityResult() when the > activity exits
ok - but the problem is, that 'data' do not contain the extra. How shall i put the extra to the intnent correctly to return the value?
– chris83
Nov 23 '18 at 7:25
You can put the String in a new Bundle, then put the bundle to the Intent via putExtras. I think I had a typo in my answer, not sure if that confused you, but I've updated the answer.
– Aaron
Nov 23 '18 at 7:40
Intent i = new Intent(); Bundle b = new Bundle(); b.putString("EXTRA1", "iany useless content"); i.putExtras(b); setResult(0, i); finish(); ==> same result in onActivityResult: data don't contain extras
– chris83
Nov 23 '18 at 7:42
Your requestCode should be greater than 0 developer.android.com/reference/android/app/…
– Aaron
Nov 23 '18 at 7:58
ok - now with requestCode 1: still no extras in data at onActivityResult
– chris83
Nov 23 '18 at 8:44
|
show 5 more comments
You put your immediate result in an Intent
, so you should call data.getStringExtra("EXTRA1')
instead of data.getExtras().getString("EXTRA1")
because it only returns an empty Bundle
.
Also your requestCode
should be greater than 0:
int: If >= 0, this code will be returned in onActivityResult() when the > activity exits
ok - but the problem is, that 'data' do not contain the extra. How shall i put the extra to the intnent correctly to return the value?
– chris83
Nov 23 '18 at 7:25
You can put the String in a new Bundle, then put the bundle to the Intent via putExtras. I think I had a typo in my answer, not sure if that confused you, but I've updated the answer.
– Aaron
Nov 23 '18 at 7:40
Intent i = new Intent(); Bundle b = new Bundle(); b.putString("EXTRA1", "iany useless content"); i.putExtras(b); setResult(0, i); finish(); ==> same result in onActivityResult: data don't contain extras
– chris83
Nov 23 '18 at 7:42
Your requestCode should be greater than 0 developer.android.com/reference/android/app/…
– Aaron
Nov 23 '18 at 7:58
ok - now with requestCode 1: still no extras in data at onActivityResult
– chris83
Nov 23 '18 at 8:44
|
show 5 more comments
You put your immediate result in an Intent
, so you should call data.getStringExtra("EXTRA1')
instead of data.getExtras().getString("EXTRA1")
because it only returns an empty Bundle
.
Also your requestCode
should be greater than 0:
int: If >= 0, this code will be returned in onActivityResult() when the > activity exits
You put your immediate result in an Intent
, so you should call data.getStringExtra("EXTRA1')
instead of data.getExtras().getString("EXTRA1")
because it only returns an empty Bundle
.
Also your requestCode
should be greater than 0:
int: If >= 0, this code will be returned in onActivityResult() when the > activity exits
edited Nov 23 '18 at 8:01
answered Nov 22 '18 at 22:19
AaronAaron
1,7332212
1,7332212
ok - but the problem is, that 'data' do not contain the extra. How shall i put the extra to the intnent correctly to return the value?
– chris83
Nov 23 '18 at 7:25
You can put the String in a new Bundle, then put the bundle to the Intent via putExtras. I think I had a typo in my answer, not sure if that confused you, but I've updated the answer.
– Aaron
Nov 23 '18 at 7:40
Intent i = new Intent(); Bundle b = new Bundle(); b.putString("EXTRA1", "iany useless content"); i.putExtras(b); setResult(0, i); finish(); ==> same result in onActivityResult: data don't contain extras
– chris83
Nov 23 '18 at 7:42
Your requestCode should be greater than 0 developer.android.com/reference/android/app/…
– Aaron
Nov 23 '18 at 7:58
ok - now with requestCode 1: still no extras in data at onActivityResult
– chris83
Nov 23 '18 at 8:44
|
show 5 more comments
ok - but the problem is, that 'data' do not contain the extra. How shall i put the extra to the intnent correctly to return the value?
– chris83
Nov 23 '18 at 7:25
You can put the String in a new Bundle, then put the bundle to the Intent via putExtras. I think I had a typo in my answer, not sure if that confused you, but I've updated the answer.
– Aaron
Nov 23 '18 at 7:40
Intent i = new Intent(); Bundle b = new Bundle(); b.putString("EXTRA1", "iany useless content"); i.putExtras(b); setResult(0, i); finish(); ==> same result in onActivityResult: data don't contain extras
– chris83
Nov 23 '18 at 7:42
Your requestCode should be greater than 0 developer.android.com/reference/android/app/…
– Aaron
Nov 23 '18 at 7:58
ok - now with requestCode 1: still no extras in data at onActivityResult
– chris83
Nov 23 '18 at 8:44
ok - but the problem is, that 'data' do not contain the extra. How shall i put the extra to the intnent correctly to return the value?
– chris83
Nov 23 '18 at 7:25
ok - but the problem is, that 'data' do not contain the extra. How shall i put the extra to the intnent correctly to return the value?
– chris83
Nov 23 '18 at 7:25
You can put the String in a new Bundle, then put the bundle to the Intent via putExtras. I think I had a typo in my answer, not sure if that confused you, but I've updated the answer.
– Aaron
Nov 23 '18 at 7:40
You can put the String in a new Bundle, then put the bundle to the Intent via putExtras. I think I had a typo in my answer, not sure if that confused you, but I've updated the answer.
– Aaron
Nov 23 '18 at 7:40
Intent i = new Intent(); Bundle b = new Bundle(); b.putString("EXTRA1", "iany useless content"); i.putExtras(b); setResult(0, i); finish(); ==> same result in onActivityResult: data don't contain extras
– chris83
Nov 23 '18 at 7:42
Intent i = new Intent(); Bundle b = new Bundle(); b.putString("EXTRA1", "iany useless content"); i.putExtras(b); setResult(0, i); finish(); ==> same result in onActivityResult: data don't contain extras
– chris83
Nov 23 '18 at 7:42
Your requestCode should be greater than 0 developer.android.com/reference/android/app/…
– Aaron
Nov 23 '18 at 7:58
Your requestCode should be greater than 0 developer.android.com/reference/android/app/…
– Aaron
Nov 23 '18 at 7:58
ok - now with requestCode 1: still no extras in data at onActivityResult
– chris83
Nov 23 '18 at 8:44
ok - now with requestCode 1: still no extras in data at onActivityResult
– chris83
Nov 23 '18 at 8:44
|
show 5 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53438512%2freceived-intent-at-onactivityresult-dont-contain-my-extras%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown