Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6911755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:59:51+00:00 2026-05-27T08:59:51+00:00

I can’t find the documentation for: android.intent.action.CALL_PRIVILEGED I saw it is used for example

  • 0

I can’t find the documentation for:

android.intent.action.CALL_PRIVILEGED

I saw it is used for example in csipsimple to handle the call.

I would like to better understand how to use it. For example: what’s the relationship between
android.intent.action.CALL_PRIVILEGED and android.intent.action.NEW_OUTGOING_CALL?

I added:

         <intent-filter>
             <action android:name="android.intent.action.CALL_PRIVILEGED" />
             <category android:name="android.intent.category.DEFAULT" />
             <data android:scheme="tel" />
         </intent-filter>

in the AndroidManifest for my project. When a call is start from the native dialer, my activity is called but if in the onResume I do getIntent().getAction() the result is null

EDIT

I made it working handling the onNewIntent as well as onCreate. The onResume receives an intent without an action (sent by the default onNewIntent handler I suppose).

The problem is that to check whether the action is CALL_PRIVILEGED I had to hard-code the string “android.intent.action.CALL_PRIVILEGED” because the action CALL_PRIVILEGED is hidden.

I tried to register the activity for ACTION_CALL only and it did not work

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T08:59:52+00:00Added an answer on May 27, 2026 at 8:59 am

    Intent with action android.intent.action.CALL_PRIVILEGED is called when you making a call from phonebook using following way:
    Phone Book->Contact->Long Click on the phonenumber -> Choose make call from dropdown menu.
    Following code should be place in Manifest:

    <activity>
      <intent-filter>
        <action android:name="android.intent.action.CALL_PRIVILEGED" />
        <category android:name="android.intent.category.DEFAULT" />
      </intent-filter>
    </activity>
    

    For HTC some changes there:

    <activity>
      <intent-filter>
        <action android:name="android.intent.action.CALL_PRIVILEGED" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:mimeType="vnd.android.cursor.item/phone" />
        <data android:mimeType="vnd.android.cursor.item/phone_v2" />
        <data android:mimeType="vnd.android.cursor.item/person" />
      </intent-filter>
    </activity>
    

    When this code is added to Manifest and you try to make call as described above you can get Application Chooser and this way to intercept the call and continue making call by the choosen application.

    As for android.intent.action.NEW_OUTGOING_CALL it used in BroadcastReceivers, when you want to get notification about outgoing call. For example if you want to to that you should put following cod to Manifest:

    <receiver android:name=".CallReceiver"> 
      <intent-filter> 
        <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> 
      </intent-filter> 
    </receiver>
    

    and create:

    public class CallReceiver extends BroadcastReceiver{
        private static final String TAG = "Call_Receiver";
    
        @Override
        public void onReceive(Context context, Intent intent) {
    
            Bundle bundle = intent.getExtras();
            //Notification there
            ....
            }
    }
    

    Using this will you get notification all times when outgoing call happend.

    The main difference beеween this items that first intercept intent and second only get a result that something happend.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anyone (maybe an XSL-fan?) help me find any advantages with handling presentation of
Can anyone give me an example of how to return the following json simply
Can I call select before recv_from on a socket that is blocking?
Can someone maybe tell me why this is not working? I have used echo
Can anybody tell me a regular expression to use within some PHP to find
Can't work out a way to make an array of buttons in android. This
Can we use the asterisk character * for a search action in SQL database?
Can anyone help me trying to find out why this doesn't work. The brushes
Can someone explain dependency injection with a basic .NET example and provide a few
Can a desktop .net library [Aforge.net] be used in a .Net CF 3.5 application?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.