tags:

views:

60

answers:

1

HI all,

I want to develop an fake call application in android. After clicking on button i have to receive a fake call with in a given time period. Is there any way to do this.. any clues or sample code...? Please let me know..Thanks in advance.

+2  A: 

Android is open source. Use it!

In the Phone app on the git repository you can find call_card.xml and CallCard.java, which are used to display the incoming call screen. Especially the java file is quite long and complex, but the layout (combined, of course, with the resources it references) should give you a fairly accurate copy of the default Android call screen.

Also, you really should accept some answers on your previous questions! Read the FAQ if you're unfamiliar with how StackOverflow works.

benvd