Android打电话的流程

拨号界面是实现在com.android.contacts进程中的,那么在按下“拨号”按键后,如何进入InCallScreen的呢?
1. 首先在DialpadFragment.java的onClick函数里会处理R.id.dialButton pressed事件,调用dialButtonPressed来处理
2. 在dialButtonPressed函数里会创建一个带有Intent.ACTION_CALL_PRIVILEGED的Intent,然后调用startActivity让系统自动寻找注册Intent.ACTION_CALL_PRIVILEGED的Activity,并启动它
3. 在packages\apps\Phone\AndroidManifest.xml里,OutgoingCallBroadcaster这个Activity注册了Intent.ACTION_CALL_PRIVILEGED(android.intent.action.CALL_PRIVILEGED),所以OutgoingCallBroadcaster这个Activity会被创建
4. 由于OutgoingCallBroadcaster这个Acitivty将自己的theme设成了android:theme="@android:style/Theme.NoDisplay",所以它不会显示出来
5. 在OutgoingCallBroadcaster的processIntent函数里,会将Intent.ACTION_CALL_PRIVILEGED转成Intent.ACTION_CALL
6. processIntent接着会定向发送Intent.ACTION_NEW_OUTGOING_CALL broadcast,并且,只有OutgoingCallReceiver会受到这个broadcast
7. 在OutgoingCallReceiver的onReceive里k,会调用startSipCallOptionHandler
8. 最后,在startSipCallOptionHandler,如果这只是个普通的voice call,会调用PhoneApp.getInstance().callController.placeCall(mIntent)实现打电话

你可能感兴趣的:(Android,Apps,Android开发)