안드로이드 BroadcastReceiver에서 Intent로 전화걸기 (Android BroadcastReceiver Intent Make Call)

2014. 4. 18. 09:43Programing/Android / Java

많은 사람들이 어려움을 겪고있는 것 중에 하나입니다.
바로, Receiver에서 Intent를 사용하는 것입니다.
Activity에서 Intent를 사용하듯이 하면, 동작을 하지 않고 에러 메시지만 보여주게 됩니다.
요럴때는 PendingIntent를 사용해주면 해결이 됩니다.
{
A lot of person don't know how to make a call or how to use the intent at the BroadcastReceiver.
If you use the Intent at the BroadcastReceiver as same way in Activity, it is not working correctly.
I think you only show the error messages.
}

예로, BroadcastReceiver에서 Intent를 사용하여 전화를 거는 소스를 첨부 하였습니다.   
{
The below is shonw how to use the intent and how to make a call at the BroadcastReceiver
}