Guest User

Untitled

a guest
Feb 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <receiver android:name=".NewOutgoingCallReceiver">
  2. <intent-filter>
  3. <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
  4. </intent-filter>
  5. </receiver>
  6.  
  7. public class NewOutgoingCallReceiver extends BroadcastReceiver
  8. {
  9.  
  10. @Override
  11. public void onReceive( Context context, Intent intent )
  12. {
  13. // here i want to check which sim is making that new call
  14. }
  15. }
Add Comment
Please, Sign In to add comment