Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have implemented onPause() and onResume() method in my application as below:

protected void onPause() {
        super.onPause();

        String receiver = phoneNoField.getText().toString();
        String message = messageBody.getText().toString();
        getIntent().putExtra(MESSAGE_RECEIVER, receiver);
        getIntent().putExtra(MESSAGE_BODY, message);

        Log.d(TAG, receiver + " " + message);       
    }


protected void onResume() {
        super.onResume();

        String receiver = getIntent().getStringExtra(MESSAGE_RECEIVER);
        String message = getIntent().getStringExtra(MESSAGE_BODY);
        if(receiver != null)
            phoneNoField.setText(receiver);
        if(message != null)
            messageBody.setText(message);

        Log.d(TAG, receiver + " " + message);       
    }

When onPause() method is called, i see the values have been set. But in my onResume() method getStringExtra() always returns null. Anything wrong with my approach?

share|improve this question

2 Answers

up vote 3 down vote accepted

getIntent() returns the Intent that has started the activity. When you go to another activity and then come back, what getIntent() returns is different from what you have had in the onPause method

One of your options is to put the values in the Intent that you use to start activity B and then when you start back activity A yet again to put the values in the Intent. The other option, which I'd prefer is to use SharedPreferences to do the job.

share|improve this answer

Sample for getting string value should be for you:

    Intent intent= getIntent();
    String receiver;
    if(intent.hasExtra(MESSAGE_RECEIVER)){
        receiver = intent.getStringExtra(MESSAGE_RECEIVER);
    }
    String message ;
    if(intent.hasExtra(MESSAGE_RECEIVER)){
        message = intent.getStringExtra(MESSAGE_BODY);
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.