Hi, I have an main activity that creates a background thread to do some processing. While this thread is running the user can do other things. When the background thread needs user input, it shows a notification. When the user clicks on it, it starts a new activity to handle the user input. When the input is received it finishes itself, but then the main activity is shown, and not the last activity that the user was using.
Is it possible to show the last activity from the user again and not the main activity from the thread? Thanks in advance! Denzel PS Here is how the new Activity for user input is started: PendingIntent contentIntent = PendingIntent.getActivity(context, 0, new Intent(context, UserInputActivity.class), 0); --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

