简体   繁体   中英

Codes for call recording in android

I am making and application that records calls. Here is my code to record a call and save the file in the SD card under songs folder. But the problem is that this code was working fine but later it is not working. I cannot find what is the problem. Can you please help me out?

My Broad cast receiver:

public class BrCallReceive extends BroadcastReceiver {

      @Override
    public void onReceive(Context c, Intent i) {

        Bundle extras = i.getExtras();
        Intent x = new Intent (c, EavesDropperActivity.class);
        x.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

        if (extras != null) {
            String state = extras.getString(TelephonyManager.EXTRA_STATE);
            Log.w("DEBUG", state);
            if (state.equals(TelephonyManager.EXTRA_STATE_OFFHOOK)) {
                Log.w("DEBUG", "MATCHES");
                Toast.makeText(c, "Launching record APP !", Toast.LENGTH_LONG).show();
                c.startActivity(x);
            }
        }
    }
}   

My Recording activity:

public class EavesDropperActivity extends Activity {

    /** Called when the activity is first created. */
    MediaRecorder m_recorder = new MediaRecorder();
    TelephonyManager t_manager ;
    PhoneStateListener p_listener ;
    String record_state;
    Uri file;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        //setContentView(R.layout.main);
        Toast.makeText(getBaseContext(),
                "Executing Activity",
                Toast.LENGTH_LONG).show();

        t_manager = (TelephonyManager) getSystemService (Context.TELEPHONY_SERVICE);
        p_listener = new PhoneStateListener() {
            @Override
            public void onCallStateChanged (int state, String incomingNumber) {
                switch (state) {
                    case (TelephonyManager.CALL_STATE_IDLE)     :
                        stop_recorder();

                        //t_manager.listen(p_listener, PhoneStateListener.LISTEN_NONE);
                        //finish();
                        break;

                    case (TelephonyManager.CALL_STATE_OFFHOOK)     :

                        start_recorder();

                        break;
                    case (TelephonyManager.CALL_STATE_RINGING)     :

                        break;

                }
            }
        };
        t_manager.listen(p_listener, PhoneStateListener.LISTEN_CALL_STATE);
        return;
    }

    public void start_recorder () {
        m_recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
        m_recorder.setOutputFormat(OutputFormat.THREE_GPP);
        m_recorder.setOutputFile(Environment.getExternalStorageDirectory()+"/songs/audionew.3gpp");
        m_recorder.setAudioEncoder(AudioEncoder.AMR_NB);

        try {
            m_recorder.prepare();
            m_recorder.start();
        } catch (IllegalStateException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    public void stop_recorder () {
        m_recorder.stop();
        m_recorder.release();
        Uri file = Uri.fromFile(
                new File(Environment.getExternalStorageDirectory(),"/songs/audionew.3gpp"));
        Toast.makeText(getBaseContext(),
                "record stored at " + file.toString(),
                Toast.LENGTH_LONG).show();

        t_manager.listen(p_listener, PhoneStateListener.LISTEN_NONE);
        finish();
    }
}

My manifest :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testapp"
android:versionCode="1"
android:versionName="1.0" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />    

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.testapp.EavesDropperActivity"
            android:label="@string/app_name" >
    </activity>

    <receiver android:name="BrCallReceive" >
        <intent-filter>
            <action android:name="android.intent.action.PHONE_STATE" >
                </action>
            </intent-filter>
        </receiver>
    </application>

</manifest>

I think the broadcast receiver is not getting activated wile i am calling my phone.

How do you know your broadcast receiver is not working? Place a Log message inside onReceive() right at the beginning. It might be that your extras == null

But how to make my receiver functional now?

Check out example #5 and just follow the same steps.

Bro i dont think activity will get launched.

Well, it does: You are starting it in your onReceive():

Intent x = new Intent (c, EavesDropperActivity.class);
c.startActivity(x);

However, you are not setting any content in your Activity ie no UI screen is presented because you have this line commented in onCreate() of EavesDropperActivity Activity:

//setContentView(R.layout.main);

So, you need to think hard on what you are trying to achieve in EavesDropperActivity

HTH.

Put this

  <android:permission="android.permission.RECEIVE_BOOT_COMPLETED" >
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED" />
    </intent-filter>


<action android:name="android.intent.action.QUICKBOOT_POWERON" />

in mainfest file for broadcast receiver.

Add your package name to your receiver class as,

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.testapp"
android:versionCode="1"
android:versionName="1.0" >

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />    

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.testapp.EavesDropperActivity"
            android:label="@string/app_name" >
    </activity>

    <receiver android:name="com.example.testapp.BrCallReceive" >
        <intent-filter>
            <action android:name="android.intent.action.PHONE_STATE" >
                </action>
            </intent-filter>
        </receiver>
    </application>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM