I'm devlopping a SIP application and whant to launch the normal incoming call interface when having an incoming call from a SIP client. Is that possible ? Thank you very much.
-
I do not think it is possible, but I can investigate if you are still interested in that answer. – Zelimir May 10 '11 at 13:47
-
@Zelimir: Yes please try to help me, i'm always intrested in that. – androniennn May 10 '11 at 14:11
-
I am interested as well so I will try to collect some useful info. – Zelimir May 10 '11 at 14:30
-
@Zelimir: Yes please if you found something just notice me(I'm using now an ungly AlertDialog :D). Thank you very much. – androniennn May 10 '11 at 18:00
-
@Zelimir: I hope that you found something interesting :P . – androniennn May 11 '11 at 23:37
-
Beter ever than never, or not? Sorry for big delay, but now I know the answer. – Zelimir Oct 25 '11 at 09:03
2 Answers
I am sorry, but it looks like there is nothing as standard incoming call interface in Android (at least not until API level 10).
The screen that you see on incoming call is part of the native PhoneApp. More specifically, it is handled by the class InCallScreen.java from the dialer source code. That Activity has no Intent filters defined, so definitely it is not intended for external usage.
However, some applications may mimic native screens (or copy complete layout, not sure if license allows that), so it looks like it is from native, although in fact it is not.

- 11,008
- 6
- 50
- 45
-
Thanks for answering! It was a long time ago :D! Anyway, now i know the correct answer. Thank you very much dude. – androniennn Oct 28 '11 at 22:13
I checked the source of default phone app, and I figured the only way to get this done is draw a layout exactly like the default incoming call interface -_-||
If you have the solution , please tell me , thank you so much !

- 74
- 2
- 9