我正在寻找一种同步方式来检查Android上的活动电话号码。
在搜索谷歌时,人们经常提到TelephonyManager,但我为此目的看到的唯一方法是getCallState
,它似乎只返回当前的呼叫状态。我认为这是用于主动呼叫。其他人使用我发现的是关于附加一个监听器然后等待和计数。
这对我来说没有好处,因为我正在使用phonegap并且只想要一个我可以调用的方法,它可以让我概述当前的调用。请注意,我想知道,如果有多个呼叫处于活动状态。一次,看起来iPhone ios api在currentCalls方法中就是这样。
我很难相信,Android并没有这样的方法。我似乎无法找到它。
任何?谢谢!
答案 0 :(得分:0)
**AndroidManifest.xml**.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.hiren.receiver.phone"
android:versionCode="1"
android:versionName="1.0" >
<application
android:icon="@drawable/icon"
android:label="@string/app_name" >
<receiver android:name="MyPhoneReceiver" >
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" >
</action>
</intent-filter>
</receiver>
</application>
<uses-sdk android:minSdkVersion="9" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" >
</uses-permission>
</manifest>
****Create the MyPhoneReceiver class.****
package com.hiren.receiver.phone;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.TelephonyManager;
import android.util.Log;
public class MyPhoneReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Bundle extras = intent.getExtras();
if (extras != null) {
String state = extras.getString(TelephonyManager.EXTRA_STATE);
Log.w("DEBUG", state);
if (state.equals(TelephonyManager.EXTRA_STATE_RINGING)) {
String phoneNumber = extras
.getString(TelephonyManager.EXTRA_INCOMING_NUMBER);
Log.w("DEBUG", phoneNumber);
}
}
}
}