Android Refresh activity when returns to it

55,368

Solution 1

Another tricky way to do this is just start your activity on onRestart()

@Override
public void onRestart(){
    super.onRestart();
    Intent previewMessage = new Intent(StampiiStore.this, StampiiStore.class);
    TabGroupActivity parentActivity = (TabGroupActivity)getParent();
    parentActivity.startChildActivity("StampiiStore", previewMessage);
    this.finish();
}

That should do the trick actually. (In this code I'm showing the way it's done when you are using a custom TabActivity manager.)

Solution 2

You should handle the result of activity that you started with "startActivityForResult" in a parent activity in a method:

@override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
   //...
}

And depending on result you could just invoke again a code that is responsible for showing the information in your parent activity (may be you put it into onResume() method or like that).

I would suggest you to move all the logic responsible for information rendering to a separate method. And invoke it after you recieve the result. Instead of restarting your parent activity.

Solution 3

If you start your second activity with the method startActivityForResult, when you return to the first activity, onActivityResult of the first activity will be called.

If you override it, you can refresh your activity from there.

See more information here and here

Solution 4

Call child activity using startActivityForResult with request code,SetResult from the child Activity. And when the child activity is finished, you can update you parent activity in onActivityResult method

@Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        // TODO Auto-generated method stub
        super.onActivityResult(requestCode, resultCode, data);

      //Check the result and request code here and update ur activity class

    }

Here is an example http://rahulonblog.blogspot.com/2010/05/android-startactivityforresult-example.html

Solution 5

Override onRestart() method inside activity you want to refresh, and recreate the activity

@Override
protected void onRestart() {
    super.onRestart();
    this.recreate();
}
Share:
55,368
Android-Droid
Author by

Android-Droid

Android developer.

Updated on October 12, 2020

Comments

  • Android-Droid
    Android-Droid over 3 years

    I need a little help with refreshing one of my activities in my application. I'm using tab host activity and connecting to web service and downloading some data from one of my child activities. When I press sync button in my child activity I'm starting a new activity which is not in tab host and when the sync is done, it returns to it's parent (child activity). The thing that I want to achieve is to refresh the activity when I return back to it. As I checked over the internet I find that the best option to do it is using startActivityForResult,but I don't really understand how to use that and how to refresh the activity when I receive the result from the finished activity.

    If anyone can help me, I'll be really glad.Thanks!

    EDIT:

    I'm using this code and it's not even showing the Log in onActivityResult

    MyCollectionId.class :

    Intent intent = new Intent(MyCollectionId.this, Synchronization.class);
    intent.putExtra("process", 2);
    startActivityForResult(intent, 1);
    
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
     super.onActivityResult(requestCode, resultCode, data);
     if(resultCode==RESULT_OK){
         Log.e("","OnActivityResult");
        Intent refresh = new Intent(this, MyCollectionId.class);
        startActivity(refresh);
        this.finish();
     }
    }
    

    Synchronization.class :

    Intent intent = new Intent();
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    setResult(RESULT_OK,intent);
    finish();