android – 在拨打电话时拨号.

前端之家收集整理的这篇文章主要介绍了android – 在拨打电话时拨号.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在键盘中输入任何数字,然后在电话拨打电话之前按通话按钮,我想在logcat中获得该拨号号码.

看到下面的图片了解.

我可以在通话时收到号码,如果是,那么我该怎么办?

解决方法

尝试使用这些解决方案.还请参考 this
public class OutgoingCallReceiver extends BroadcastReceiver {

   public static final String ABORT_PHONE_NUMBER = "1231231234";

   private static final String OUTGOING_CALL_ACTION = "android.intent.action.NEW_OUTGOING_CALL";
   private static final String INTENT_PHONE_NUMBER = "android.intent.extra.PHONE_NUMBER";

   @Override
   public void onReceive(final Context context,final Intent intent) {
      Log.v(Constants.LOGTAG,"OutgoingCallReceiver onReceive");
      if (intent.getAction().equals(OutgoingCallReceiver.OUTGOING_CALL_ACTION)) {
         Log.v(Constants.LOGTAG,"OutgoingCallReceiver NEW_OUTGOING_CALL received");

         // get phone number from bundle
         String phoneNumber = intent.getExtras().getString(OutgoingCallReceiver.INTENT_PHONE_NUMBER);
         if ((phoneNumber != null) && phoneNumber.equals(OutgoingCallReceiver.ABORT_PHONE_NUMBER)) {
            Toast.makeText(context,"NEW_OUTGOING_CALL intercepted to number 123-123-1234 - aborting call",Toast.LENGTH_LONG).show();
            this.abortBroadcast();
         }
      }
   }
}
原文链接:https://www.f2er.com/android/311864.html

猜你在找的Android相关文章