溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android中怎么監(jiān)聽通話

發(fā)布時(shí)間:2021-06-26 15:08:05 來源:億速云 閱讀:227 作者:Leah 欄目:移動(dòng)開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)Android中怎么監(jiān)聽通話,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

TelephonyManager作為一個(gè)Service接口提供給用戶查詢電話相關(guān)的內(nèi)容,比如IMEI,LineNumber1等。通過下面的代碼即可獲得TelephonyManager的實(shí)例。

TelephonyManager mTelephonyMgr = (TelephonyManager) this  .getSystemService(Context.TELEPHONY_SERVICE);

在Android平臺(tái)中,PhoneStateListener是個(gè)很有用的監(jiān)聽器,用來監(jiān)聽電話的狀態(tài),比如呼叫狀態(tài)和連接服務(wù)等。Android監(jiān)聽通話方法如下所示:

  1. public void onCallForwardingIndicatorChanged(boolean cfi)  

  2. public void onCallStateChanged(int state, 
    String incomingNumber)  

  3. public void onCellLocationChanged(CellLocation location)  

  4. public void onDataActivity(int direction)  

  5. public void onDataConnectionStateChanged(int state)  

  6. public void onMessageWaitingIndicatorChanged(boolean mwi)  

  7. public void onServiceStateChanged
    (ServiceState serviceState)  

  8. public void onSignalStrengthChanged(int asu) 

這里我們只需要覆蓋onCallStateChanged()方法即可監(jiān)聽呼叫狀態(tài)。在TelephonyManager中定義了三種狀態(tài),分別是振鈴(RINGING),摘機(jī)(OFFHOOK)和空閑(IDLE),我們通過state的值就知道現(xiàn)在的電話狀態(tài)了。

獲得了TelephonyManager接口之后,調(diào)用listen()方法即可實(shí)現(xiàn)Android監(jiān)聽通話。

mTelephonyMgr.listen(new TeleListener(),  PhoneStateListener.LISTEN_CALL_STATE);

下面是個(gè)簡(jiǎn)單的測(cè)試?yán)?,只是把呼叫狀態(tài)追加到TextView之上。

  1. package com.j2medev;  

  2. import android.app.Activity;  

  3. import android.content.Context;  

  4. import android.os.Bundle;  

  5. import android.telephony.PhoneStateListener;  

  6. import android.telephony.TelephonyManager;  

  7. import android.util.Log;  

  8. import android.widget.TextView;  

  9. public class Telephony extends Activity {  

  10. private static final String TAG = "Telephony";  

  11. TextView view = null;  

  12. @Override  

  13. protected void onCreate(Bundle savedInstanceState) {  

  14. super.onCreate(savedInstanceState);  

  15. TelephonyManager mTelephonyMgr = (TelephonyManager) this  

  16. .getSystemService(Context.TELEPHONY_SERVICE);  

  17. mTelephonyMgr.listen(new TeleListener(),  

  18. PhoneStateListener.LISTEN_CALL_STATE);  

  19. view = new TextView(this);  

  20. view.setText("listen the state of phone\n");  

  21. setContentView(view);  

  22. }  

  23. class TeleListener extends PhoneStateListener {  

  24. @Override  

  25. public void onCallStateChanged(int state, 
    String incomingNumber) {  

  26. super.onCallStateChanged(state, incomingNumber);  

  27. switch (state) {  

  28. case TelephonyManager.CALL_STATE_IDLE: {  

  29. Log.e(TAG, "CALL_STATE_IDLE");  

  30. view.append("CALL_STATE_IDLE " + "\n");  

  31. break;  

  32. }  

  33. case TelephonyManager.CALL_STATE_OFFHOOK: {  

  34. Log.e(TAG, "CALL_STATE_OFFHOOK");  

  35. view.append("CALL_STATE_OFFHOOK" + "\n");  

  36. break;  

  37. }  

  38. case TelephonyManager.CALL_STATE_RINGING: {  

  39. Log.e(TAG, "CALL_STATE_RINGING");  

  40. view.append("CALL_STATE_RINGING" + "\n");  

  41. break;  

  42. }  

  43. default:  

  44. break;  

  45. }  

  46. }  

  47. }  

不要忘記在AndroidManifest.xml里面添加個(gè)permission.

  1. < uses-permission android:name=
    "android.permission.READ_PHONE_STATE" /> 

關(guān)于Android中怎么監(jiān)聽通話就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI