当呼叫断开时,我需要使用呼叫方号码向用户显示一个对话框。我怎样才能做到这一点?应用程序是否必须为此打开,或者即使应用程序关闭也会运行?任何帮助表示赞赏。
由于
答案 0 :(得分:1)
使用BroadcastReceiver监听断开的呼叫。
这可以帮助您获取最后一位来电者getting the call logs of incoming and outgoing calls in android programmatically的详细信息。
答案 1 :(得分:0)
您需要实施广播接收器。
查看此示例Incoming call broadcast receiver。以下是一些重要的细节。
在您的清单中,您需要添加这些项目。
<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission>
<receiver
android:name=".CallComplete"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
</receiver>
然后在你的CallComplete
课程中:
public class CallComplete extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
try {
TelephonyManager tmgr = (TelephonyManager) context
.getSystemService(Context.TELEPHONY_SERVICE);
MyPhoneStateListener PhoneListener = new MyPhoneStateListener();
tmgr.listen(PhoneListener, PhoneStateListener.LISTEN_CALL_STATE);
} catch (Exception e) {
Log.e("Phone Receive Error", " " + e);
}
}
private class MyPhoneStateListener extends PhoneStateListener {
public void onCallStateChanged(int state, String phoneNumber) {
Log.d("MyPhoneListener",state+" incoming no:"+phoneNumber);
// zero state is CALL_STATE_IDLE
if (state == 0) {
String msg = "New Phone Call Event. Phone Number Number : "+phoneNumber;
int duration = Toast.LENGTH_LONG;
Toast toast = Toast.makeText(pcontext, msg, duration);
toast.show();
}
}
}
}
如果号码不再可用,您可能必须在呼叫状态1状态(即CALL_STATE_RINGING)期间存储它并存储它。