Android实现电话录音功能
需求分析
- 电话录音是在通话的时候进行录音,所以需要使用一个服务来完成功能。
- 需要监听电话的状态,分为三种状态:
- 空闲状态 TelephonyManager.CALL_STATE_IDLE
- 响铃状态 TelephonyManager.CALL_STATE_RINGING
- 摘机状态 TelephonyManager.CALL_STATE_OFFHOOK
- 需要实现录音功能 ,详细文档请参考(http://developer.android.com/guide/topics/media/audio-capture.html)
- 可以加入开机启动这个服务。
具体编码
manifest.xml文件 。需要申请四个权限,并实现服务,广播的注册。
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.easzz.recorder"> <uses-permission android:name="android.permission.READ_PHONE_STATE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.RECORD_AUDIO"/> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <service android:name=".RecorderService"> </service> <receiver android:name=".BootReceiver"> <intent-filter> <!--添加过滤实现开机启动--> <action android:name="android.intent.action.BOOT_COMPLETED"/> </intent-filter> </receiver> </application> </manifest>
通过一个Button按钮来启动该服务 MainActivity.java
public class MainActivity extends AppCompatActivity { private Button btnRecorder; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); btnRecorder= (Button) findViewById(R.id.btn_recorder); //启动服务 btnRecorder.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent intent=new Intent(MainActivity.this,RecorderService.class); startService(intent); } }); } }
服务的具体实现代码RecorderService.java
/** * Created by Easzz on 2015/12/6. */ public class RecorderService extends Service { private MediaRecorder recorder; //录音的一个实例 @Override public IBinder onBind(Intent intent) { return null; } @Override public void onCreate() { super.onCreate(); //获得电话管理器 TelephonyManager tm= (TelephonyManager) getSystemService(TELEPHONY_SERVICE); //启动监听.传入一个listener和监听的事件, tm.listen(new MyListener(),PhoneStateListener.LISTEN_CALL_STATE); } class MyListener extends PhoneStateListener{ //在电话状态改变的时候调用 @Override public void onCallStateChanged(int state, String incomingNumber) { super.onCallStateChanged(state, incomingNumber); switch (state){ case TelephonyManager.CALL_STATE_IDLE: //空闲状态 if (recorder!=null){ recorder.stop();//停止录音 recorder.release();//释放资源 recorder=null; } break; case TelephonyManager.CALL_STATE_RINGING: //响铃状态 需要在响铃状态的时候初始化录音服务 if (recorder==null){ recorder=new MediaRecorder();//初始化录音对象 recorder.setAudioSource(MediaRecorder.AudioSource.MIC);//设置录音的输入源(麦克) recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);//设置音频格式(3gp) createRecorderFile();//创建保存录音的文件夹 recorder.setOutputFile("sdcard/recorder" + "/" + getCurrentTime() + ".3gp"); //设置录音保存的文件 recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);//设置音频编码 try { recorder.prepare();//准备录音 } catch (IOException e) { e.printStackTrace(); } } break; case TelephonyManager.CALL_STATE_OFFHOOK: //摘机状态(接听) if (recorder!=null){ recorder.start(); //接听的时候开始录音 } break; } } //创建保存录音的目录 private void createRecorderFile() { String absolutePath = Environment.getExternalStorageDirectory().getAbsolutePath(); String filePath=absolutePath+"/recorder"; File file=new File(filePath); if (!file.exists()){ file.mkdir(); } } //获取当前时间,以其为名来保存录音 private String getCurrentTime(){ SimpleDateFormat format=new SimpleDateFormat("yyyyMMddHHmmss"); Date date=new Date(); String str=format.format(date); return str; } } }
在开机广播中实现开机启动服务
/** * Created by Easzz on 2015/12/6. */ public class BootReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Intent i=new Intent(context,RecorderService.class); //启动服务不需要到栈顶 ,因为没有前台界面。但是开机启动一个活动需要一个flag //i.setFlag(Intent.FLAG_ACTIVITY_NEW_TASK); context.startService(i); } }
项目可以参考: https://github.com/aykuttasil/CallRecorder