我想使用eclipse编写一个Android应用程序女巫从用户获取电话号码,并在拨打电话号码(使用意图或其他东西)后返回应用程序并根据响应调用不同的方法(拒绝,错过, ...)
我知道如何使用意图调用数字,但不知道如何处理此解决方案(在被拒绝或错过后立即返回应用程序)
答案 0 :(得分:0)
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.telephony.PhoneStateListener;
import android.telephony.TelephonyManager;
public class PhoneCall {
public static final String PARAM_CALL_DONE = "CALL_DONE";
public static void call(String phoneNumber, Activity activity) {
CallEndedListener.createListenerFor(activity);
Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber));
activity.startActivity(callIntent);
}
private static class CallEndedListener extends PhoneStateListener {
private boolean called = false;
private final TelephonyManager telephonyManager;
private final Context context;
private Activity activity;
private CallEndedListener(Activity act) {
this.context = act.getBaseContext();
this.activity = act;
this.telephonyManager = (TelephonyManager) context
.getSystemService(Activity.TELEPHONY_SERVICE);
}
public static void createListenerFor(Activity act) {
CallEndedListener listener = new CallEndedListener(act);
listener.telephonyManager.listen(listener, LISTEN_CALL_STATE);
}
@Override
public void onCallStateChanged(int state, String incomingNumber) {
if (called && state == TelephonyManager.CALL_STATE_IDLE) {
called = false;
telephonyManager.listen(this, PhoneStateListener.LISTEN_NONE);
try {
Intent t = new Intent(context, activity.getClass());
t.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
t.putExtras(activity.getIntent());
t.putExtra(PARAM_CALL_DONE, true);
t.setAction(Intent.ACTION_MAIN);
activity.finish();
activity = null;
context.startActivity(t);
} catch (Exception e) {
e.printStackTrace();
}
} else {
if (state == TelephonyManager.CALL_STATE_OFFHOOK) {
called = true;
}
}
}
}
}
通过移交参数“PARAM_CALL_DONE”,呼叫活动可以测试呼叫后是否启动/恢复。在onResume()方法中测试它是有意义的,如下所示:
@Override
protected void onResume() {
if (extras.getBoolean(PhoneCall.PARAM_CALL_DONE)) {
showInfoText(); // do whatever you like here...
extras.remove(PhoneCall.PARAM_CALL_DONE);
}
}
不要忘记在清单文件中添加权限。
<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
<uses-permission android:name="android.permission.CALL_PRIVILEGED"></uses-permission>
为了使用手机,一个非常简单的方法调用就足够了,“phonenumber”是一个电话号码,作为String并从一个Activity中调用
PhoneCall.call(phonenumber, this);