33

我想知道我是否在通话中。

如果我正在通话,请启动服务(服务部分很清楚)。我该怎么做呢?

在接听电话时,我需要拨打服务电话...我不知道该怎么做?有什么帮助吗?

4

4 回答 4

58

你需要广播接收器...

在清单中声明广播接收器...

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

还要声明使用许可...

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

广播接收器类...

package x.y;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;

public class PhoneStateBroadcastReceiver extends BroadcastReceiver{

    @Override
    public void onReceive(Context context, Intent intent) {

        TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
        telephonyManager.listen(new CustomPhoneStateListener(context), PhoneStateListener.LISTEN_CALL_STATE);

    }

}

还有一个自定义电话状态监听器的类...

package x.y;
import android.content.Context;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;

public class CustomPhoneStateListener extends PhoneStateListener {

    //private static final String TAG = "PhoneStateChanged";
    Context context; //Context to make Toast if required 
    public CustomPhoneStateListener(Context context) {
        super();
        this.context = context;
    }

    @Override
    public void onCallStateChanged(int state, String incomingNumber) {
        super.onCallStateChanged(state, incomingNumber);

        switch (state) {
        case TelephonyManager.CALL_STATE_IDLE:
            //when Idle i.e no call
            Toast.makeText(context, "Phone state Idle", Toast.LENGTH_LONG).show();
            break;
        case TelephonyManager.CALL_STATE_OFFHOOK:
            //when Off hook i.e in call
            //Make intent and start your service here
            Toast.makeText(context, "Phone state Off hook", Toast.LENGTH_LONG).show();
            break;
        case TelephonyManager.CALL_STATE_RINGING:
            //when Ringing
            Toast.makeText(context, "Phone state Ringing", Toast.LENGTH_LONG).show();
            break;
        default:
            break;
        }
    }
}
于 2011-05-10T11:13:34.270 回答
33

TelephonyManager.getCallState()返回其中之一

  • CALL_STATE_IDLE
  • CALL_STATE_OFFHOOK
  • CALL_STATE_RINGING

如果这符合您的要求,那么它的代码比 Pied Piper 更全面的解决方案要少得多。

于 2013-09-27T08:10:07.960 回答
1

你只能知道电话来了,但你不能修改它。:( 看到这个 为什么 2.3 版的 android 没有 android.permission.MODIFY_PHONE_STATE ?这有什么解决方案?

于 2012-02-23T12:15:32.823 回答
0

这是一个老问题,毫无疑问。但它作为谷歌的第一个结果弹出。因此,我决定添加另一种有用的方法。

当电话状态改变时,系统发送TelephonyManager.ACTION_PHONE_STATE_CHANGED广播。此广播有一个额外的状态,可以使用TelephonyManager.EXTRA_STATE.

额外的状态可以有三种选择:

  • EXTRA_STATE_IDLE
  • EXTRA_STATE_OFFHOOK
  • EXTRA_STATE_RINGING

您可以设计一个广播接收器来处理所有这些:

public class PhoneStateReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent){

        if (intent.getAction().equals(TelephonyManager.ACTION_CALL_STATE_CHANGED){

            String state = intent.getStringExtra(TelephonyManager.EXTRA_STATE);

            if (state.equals(TelephonyManager.EXTRA_STATE_IDLE){

                // No call currently active.

            } else if (state.equals(TelephonyManager.EXTRA_STATE_RINGING){

                // A call is ringing

            } else if (state.equals(TelephonyManager.EXTRA_STATE_OFFHOOK){

                // Call has been answered.

            }
        }
    }
}

你可以在这里读更多关于它的内容:

https://developer.android.com/reference/android/telephony/TelephonyManager#ACTION_PHONE_STATE_CHANGED

注意:广播接收器将在后台触发,从 Android O+ 开始,您无法从后台进程启动后台服务。考虑使用 启动前台服务context.startForegroundService(intent)。在onStartCommand(...)服务中,调用startForeground(...)。否则,系统会引发致命异常。但是,在 Android O 之下,您可以安全地使用context.startService(intent)而不是startForegroundService(...).

于 2020-05-04T07:36:47.973 回答