Return to Activity after action completed in Android?

后端 未结 3 449
难免孤独
难免孤独 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:36

    It is possible. Just need to add the following extra to your intent:

    sendIntent.putExtra("exit_on_sent", true);
    

提交回复
热议问题