I am launching an activity to make a phone call, but when I pressed the \'end call\' button, it does not go back to my activity. Can you please tell me how can I launch a c
Try using:
finish();
at the end of activity. It will redirect you to your previous activity.