7

I'm having a problem in my android application. I don't know why 'onActivityResult' method is not being called when 'Up navigation' button from action bar is pressed. I think I've done everything properly:

  • Parent activity launch child activity with 'startActivityForResult' method.
    Intent intent = new Intent(ParentActivity.this, ChildActivity.class);
    startActivityForResult(intent, 1000);
    

  • Parent activity has overridden 'onActivityResult' method.
    protected void onActivityResult(int requestCode, int resultCode, Intent data)
    {
       super.onActivityResult(requestCode, resultCode, data);   
       if (data != null && requestCode == 1000)
       {
            Bundle extras = data.getExtras();
            Boolean rc = extras.getBoolean(MyConstants.INTENT_EXTRA_RESULT);
            if (rc)
            {
                .......
            }
        }
    }
    

  • Child activity has overridden 'onOptionsItemSelected' and calls 'NavUtils.navigateUpFromSameTask'.
    public boolean onOptionsItemSelected(MenuItem item)
      {
        if (item.getItemId() == android.R.id.home)
        {
            Intent result = new Intent((String)null);
            result.putExtra(MyConstants.INTENT_EXTRA_RESULT, true);
            setResult(RESULT_OK, result);
            NavUtils.navigateUpFromSameTask(this);          
            return true;
        }           
        else
        {
            return super.onOptionsItemSelected(item);
        }
    }
    

  • Child activity has overriden 'finish' method. This method set a result.
    public void finish() 
    {
       Intent result = new Intent((String)null);
       result.putExtra(Constantes.INTENT_EXTRA_HAY_QUE_RECALCULAR, hayQueRecalcular);               
       setResult(RESULT_OK, result);
    
       super.finish();
    }   
    

    I'm not sure why 'onActivityResult' method is not being called.

    What I've observed is that child activity is not being finished ('finish' method is not being called) when 'Up navigation' button from action bar is pressed. However it is called when back button (hardware button) is pressed.

    What I'm doing wrong?

    Thanks

  • Eduardo
    • 1,169
    • 5
    • 21
    • 56

    1 Answers1

    5

    As your child Activity is just on the top of your Parent Activity, no need of this method

     NavUtils.navigateUpFromSameTask(this);    
    

    write like

    public boolean onOptionsItemSelected(MenuItem item) {
        if (item.getItemId() == android.R.id.home) {
            Intent result = new Intent((String) null);
            result.putExtra(MyConstants.INTENT_EXTRA_RESULT, true);
            setResult(RESULT_OK, result);
            finish();
            return true;
        } else {
            return super.onOptionsItemSelected(item);
        }
    }
    

    finish your Child Activity when home button is pressed.

    Gopal Gopi
    • 11,101
    • 1
    • 30
    • 43
    • 1
      Thanks for your help. Then I don't understand what 'navigateUpFromSameTask method' is for. I thought it was to navigate to the parent activity. Android documentation says: "To navigate up when the user presses the app icon, you can use the NavUtils class's static method, navigateUpFromSameTask(). When you call this method, it finishes the current activity and starts (or resumes) the appropriate parent activity." – Eduardo Dec 03 '13 at 15:39
    • 1
      Thanks, now works but I still doesn't understand why 'NavUtils.navigateUpFromSameTask(this)' doesn't finish the child activity. – Eduardo Dec 03 '13 at 15:40
    • @Eduardo Don't know exactly about behaviour of NavUtils. I think it directly removes Activity from task. – Gopal Gopi Dec 03 '13 at 15:43
    • what if u have a second child activity in between? how do you send the result to the parent? – desgraci May 03 '18 at 20:13