在Android中检索来电的电话号码
Posted
技术标签:
【中文标题】在Android中检索来电的电话号码【英文标题】:Retrieve incoming call's phone number in Android 【发布时间】:2010-12-23 14:50:30 【问题描述】:我想检索来电的电话号码并用它做一些事情,比如 do 在http://blog.whitepages.com/2009/02/27/caller-id-by-whitepages-a-new-android-app-that-puts-telemarketers-on-alert/
您能帮帮我吗,因为我找不到有关此的任何信息。 我从哪里开始以及如何获取电话号码?
好的,目前我的代码如下所示。当我拨打电话时,CustomBroadcastReceiver 会捕获它并打印出日志消息。我可以从捆绑包中检索电话号码。但!我无法让 CustomPhoneStateListener 工作。如您所见,我已将 customPhoneState 侦听器注册到接收器,但日志消息永远不会从 CustomPhoneStateListener 类中打印出来。我在这里错过了什么? 我的想法正确吗?
<receiver android:name=".CustomBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
</receiver>
</application>
<uses-sdk android:minSdkVersion="5" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
public class CustomPhoneStateListener extends PhoneStateListener
private static final String TAG = "CustomPhoneStateListener";
public void onCallStateChange(int state, String incomingNumber)
Log.v(TAG, "WE ARE INSIDE!!!!!!!!!!!");
Log.v(TAG, incomingNumber);
switch(state)
case TelephonyManager.CALL_STATE_RINGING:
Log.d(TAG, "RINGING");
break;
public class CustomBroadcastReceiver extends BroadcastReceiver
private static final String TAG = "CustomBroadcastReceiver";
@Override
public void onReceive(Context context, Intent intent)
Log.v(TAG, "WE ARE INSIDE!!!!!!!!!!!");
TelephonyManager telephony = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
CustomPhoneStateListener customPhoneListener = new CustomPhoneStateListener();
telephony.listen(customPhoneListener, PhoneStateListener.LISTEN_CALL_STATE);
Bundle bundle = intent.getExtras();
String phoneNr= bundle.getString("incoming_number");
Log.v(TAG, "phoneNr: "+phoneNr);
【问题讨论】:
我没有收到incoming_number
来电设备 POCO f1 pi
并且接收器被调用了两次
【参考方案1】:
使用PhoneStateListener
。它有一个onCallStateChanged
处理程序;您将获得的其中一个参数是包含传入电话号码的String
。
【讨论】:
能否提供一个示例实现? 我对这个问题的回答可能会有所帮助link incomingNumber 参数中没有任何内容,应该是什么? 同样的事情,没有接到电话【参考方案2】:您在CustomPhoneStateListener
中被覆盖的方法应称为onCallStateChanged()
(而不是onCallStateChange()
)。
如果你有 @Override
注释,Java 编译器就会发现这一点,就像你有 onReceive()
一样。
【讨论】:
你就是男人!谢谢!我还有一个问题要问,那就是如何在来电视图中添加内容? 我不确定那个的细节。您的错字更容易:) 但是,我认为您正在寻找的是 Toast。但它可能不会显示在来电屏幕上,除非您的代码是服务(而不是活动)。但正如我所说,我自己在 Android 开发方面还没有走到这一步。 developer.android.com/guide/topics/ui/notifiers/toasts.html【参考方案3】:以上答案现在已经过时了。适用于 Android 7 及更低版本。
对于 android 9 及更高版本,您必须在 Androidmanifest.xml
中添加另一个权限
<uses-permission android:name="android.permission.READ_CALL_LOG"/>
没有电话号码将为空。对于 Android 8,我不确定。
PhoneStateReciever.java
package com.incomingcalls;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.telephony.TelephonyManager;
import android.util.Log;
import android.widget.Toast;
public class PhoneStateReceiver extends BroadcastReceiver
@Override
public void onReceive(Context context, Intent intent)
try
System.out.println("Receiver start");
String state = intent.getStringExtra(TelephonyManager.EXTRA_STATE);
String incomingNumber = intent.getStringExtra(TelephonyManager.EXTRA_INCOMING_NUMBER);
Log.e("Incoming Number", "Number is ," + incomingNumber);
Log.e("State", "State is ," + state);
if(state.equals(TelephonyManager.EXTRA_STATE_RINGING))
Toast.makeText(context,"Incoming Call State",Toast.LENGTH_SHORT).show();
Toast.makeText(context,"Ringing State Number is -"+incomingNumber,Toast.LENGTH_SHORT).show();
if ((state.equals(TelephonyManager.EXTRA_STATE_OFFHOOK)))
Toast.makeText(context,"Call Received State",Toast.LENGTH_SHORT).show();
if (state.equals(TelephonyManager.EXTRA_STATE_IDLE))
Toast.makeText(context,"Call Idle State",Toast.LENGTH_SHORT).show();
catch (Exception e)
e.printStackTrace();
AnroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.incomingcalls">
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.READ_CALL_LOG" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".PhoneStateReceiver">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
</receiver>
</application>
</manifest>
【讨论】:
以上是关于在Android中检索来电的电话号码的主要内容,如果未能解决你的问题,请参考以下文章