how to identify incoming call using android? -


i want record incoming call,any body knows please give idea that,other wise give idea how know incoming call,

thanks all

i believe should write broadcast receiver i.e. make class , extend broadcastreceiver

public class myclass extends broadcastreceiver {  // functions here } 

in manifest.xml file write

<receiver android:name="myclass">             <intent-filter>                              <action android:name="android.intent.action.answer">/action>             </intent-filter>         </receiver> 

this call myclass ever call received


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -