I have code which was working before Ice cream sandwich was born. but seems like now i have problem with this kid.
Intent intent=new Intent(this, com.myUI.class)
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP
| Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
startActivity(intent);
By the way i am trying to put my UI on foreground after call finishes. My app automatically dial and suppose to show own UI after dialer done with call or at least it was doing this so far without any issue.
Guys what i am doing wrong and what should i do to fix it?