android - How to set incoming call priority -
Can someone tell me about the priority of the incoming call screen
I developed an Android application In which I want to show my broadcast reciever
instead of the default screen
You General Broadcast Receiver
Checking
As discussed in the developer site they are two types of receivers
Normal broadcast (sent with Context.sendBroadcast ) Are completely asynchronous All receivers of the broadcast are run in an undefined order, often at the same time. It is more efficient, but it means that the receivers can not use the result or may include the API.
Ordered broadcast (sent with Context.sendOrderedBroadcast) is given to a receiver at a time. After each receiver is executed in return, it can promote the outcome of the next receiver, or cancel the broadcast completely so that it can not be passed to other receivers. Order receivers can be controlled with Android: the priority feature of the mailing intent-filter;
Note : This is taken from the developer site above
Comments
Post a Comment