在OnReceive
方法中我有这样的东西:
Bundle bundle=intent.getExtras();
String phonenumber=intent.getStrngExtra(Intent.EXTRA_PHONE_NUMBER);
如何查看拨号是否仍在通话或客户挂断电话?如何检查电话是否被接听?
当客户挂断电话或被叫客户接听电话时,我需要打印一个 toat。
在OnReceive
方法中我有这样的东西:
Bundle bundle=intent.getExtras();
String phonenumber=intent.getStrngExtra(Intent.EXTRA_PHONE_NUMBER);
如何查看拨号是否仍在通话或客户挂断电话?如何检查电话是否被接听?
当客户挂断电话或被叫客户接听电话时,我需要打印一个 toat。
您将需要为操作android.intent.action.PHONE_STATE注册的广播接收器
如果摘机后电话状态未变为空闲,则表示通话仍在进行中。
如果 read phone state 广播接收器中的状态更改为 offhook ,则呼叫被应答。在这些州根据需要举杯。
public class CallDurationReceiver extends BroadcastReceiver {
static boolean flag =false;
static long start_time,end_time;
@Override
public void onReceive(Context arg0, Intent intent) {
String action = intent.getAction();
if(action.equalsIgnoreCase("android.intent.action.PHONE_STATE")){
if (intent.getStringExtra(TelephonyManager.EXTRA_STATE).equals(
TelephonyManager.EXTRA_STATE_RINGING)) {
//tOAST FOR INCOMING CALL, NOT YET PICKED UP
}
if (intent.getStringExtra(TelephonyManager.EXTRA_STATE).equals(
TelephonyManager.EXTRA_STATE_IDLE)) {
end_time=System.currentTimeMillis();
//Total time talked =
long total_time = end_time-start_time;
//Store total_time somewhere or pass it to an Activity using intent
} if (intent.getStringExtra(TelephonyManager.EXTRA_STATE).equals(
TelephonyManager.EXTRA_STATE_OFFHOOK)) {
start_time=System.currentTimeMillis();
}
}
}
在清单文件中注册您的接收器,如下所示:
<receiver android:name=".CallDurationReceiver">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
</receiver>
}
还要添加使用权限:
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
好吧,我找到了解决方案并成功实现了它。无法获取被叫方接受拨出电话的确切时间。
在另一端接听之前,它已经经过了两个阶段,即on_State_idle
和on_state_offhook
。On_state_ringing
不适用于拨出电话。
假设如果对方没有接听电话,则电话连续响铃 40 秒(这不确定)。
on_State_idle
与和的开始阶段一起启动一个计时器on_state_offhook
。
如果计时器超过 40 秒,则有两种情况意味着另一方面的人接听了我的电话。
如果on_State_idle->on_state_offhook->on_State_idle
在 40 秒内工作意味着另一只手没有接我的电话。
如果第二种情况为真,则从通话记录中获取通话时长。
Totaltimer 运行时间 - 通话记录中的时间为您提供拨出电话的准确时间!
您可以使用以下代码来处理呼叫状态:::
private Runnable callMonitor = new Runnable() {
public void run() {
try {
EndCallListener callListener = new EndCallListener();
TelephonyManager mTM = (TelephonyManager)m_activity.getSystemService(Context.TELEPHONY_SERVICE);
mTM.listen(callListener, PhoneStateListener.LISTEN_CALL_STATE);
} catch(Exception e) {
Log.e("callMonitor", "Exception: "+e.toString());
}
}
};
private class EndCallListener extends PhoneStateListener {
private boolean active = false;
@Override
public void onCallStateChanged(int state, String incomingNumber) {
if(TelephonyManager.CALL_STATE_RINGING == state) {
Log.i("EndCallListener", "RINGING, number: " + incomingNumber);
}
if(TelephonyManager.CALL_STATE_OFFHOOK == state) {
//wait for phone to go offhook (probably set a boolean flag) so you know your app initiated the call.
active = true;
Log.i("EndCallListener", "OFFHOOK");
}
if(TelephonyManager.CALL_STATE_IDLE == state) {
//when this state occurs, and your flag is set, restart your app
Log.i("EndCallListener", "IDLE");
if (active) {
active = false;
// stop listening
TelephonyManager mTM = (TelephonyManager)m_activity.getSystemService(Context.TELEPHONY_SERVICE);
mTM.listen(this, PhoneStateListener.LISTEN_NONE);
// restart the inbox activity
// Intent intent = new Intent(m_activity, MDInboxActivity.class);
// m_activity.startActivity(intent);
}
}
}
}