Back button and refreshing previous activity

后端 未结 11 1401
感动是毒
感动是毒 2020-12-02 06:01

If we have two activities:

  1. List of files and last modified time
  2. File editing activity

A user selects a file from the list and is taken

11条回答
  •  长情又很酷
    2020-12-02 06:44

    If you want to refresh previous activity, this solution should work:

    In previous activity where you want to refresh:

    @Override
    public void onRestart()
    {
        super.onRestart();
        // do some stuff here
    }
    

提交回复
热议问题