Hi,

I have a voip app which needs to automatically comes to foreground
when an incoming call comes in.
On Android 3.2, I used the code below:
void OnIncomingCall {
 mIntent = new Intent().setClass(this, IncomingCallView.class);
 startActivity(mIntent);
}

I upgraded my phone to ICS; and now this no longer works. The
IncomingCallView activity gets launched (top activity for my tasks)
but does not come to foreground. I want the activity to come to
foreground so that user can pick up the call.

Thanks.

-- 
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

Reply via email to