Return to Activity after action completed in Android?

后端 未结 3 454
难免孤独
难免孤独 2020-12-07 01:21

When I start the SMS application using the following methods -- everything works fine up until the point where the message is sent. When I send the message -- it never navig

3条回答
  •  醉酒成梦
    2020-12-07 01:56

    As soon as the activity that you have started is finished, the onActivityResult() method in your first activity is called. That's why you should overwrite onActivityResult() in your first activity and handle there the activities that are finished.

提交回复
热议问题