If an activity calls it parent activity by startActivity(intent) // Here intent is parent activity
,
Then, will a new instance of the parent activty will be opened or the same background activity will come in front?
I'm asking because my parent activity contains a ListView
& my child activity is performing an operation that is updating the ListView in parent activity.
As soon as the user presses the Done button in child activity, the list needs to be updated. That's why I'm using startActivity
.