When i press a button in my app, I need to return to the last activity.
Any ideas?
Just for record: The described method doesn't do the same as the back button does in some cases, but you can call
this.onBackPressed();
or
getActivity().onBackPressed();
if you are in a fragment to achieve exaclty the same behaviour.