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

  • Home
  • SEARCH
  • 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 9072567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T18:11:57+00:00 2026-06-16T18:11:57+00:00

when user start make call, android propose to choice, which app can be using

  • 0

when user start make call, android propose to choice, which app can be using to make call (like Skype). Simple question – how my app can be in that list and how i can get number, which user was put in system dialer?

i was do a all issues, which suggest in both answers, but still, if customer press call on phone dialpad, i still seen :

make call with:
– skype
– phone

and there is no my app inside list.

EDITED

now problem is solved for that code, now my app in list and opened as well: (was wrong > symbol)

  <activity
        android:name=".PhonePadActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />

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


    </activity>

Second part of problem – get phone number, which user was dial in standard dialpad, still not solved:

that code inside onCreated:

Intent intent = getIntent();

String number = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER);
Toast.makeText(this, "Call was made to-->>" + number, 5000).show();

gives null.

SECOND EDITION

Last time i was received from Google notification that they are restrict CALL_PRIVILEGED (bcs we are not support emergency calls for them.) Without CALL_PRIVILEGED my app not in list again. Anybody know a fresh solution for that thing? I’m now discussed with google support regarding that issue, we got some iterations without success for now.

  • 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-06-16T18:11:58+00:00Added an answer on June 16, 2026 at 6:11 pm

    Declare your Activity as to add it in option list for calling application

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

    and for calling to any Number use Intent.ACTION_DIAL as :

    Uri numberuri = Uri.parse("tel:"  + edit_text_number);
    Intent intent_call = new Intent(Intent.ACTION_DIAL, numberuri);
    startActivity(intent_call);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing an android app to give the user the option to call
In my app after user press start button I execute some code in for
i'm developing an app that has a jtable and user could start a download.
I have the following problem: I have an Activity where a user can start
I am implementing an online exam portal, so that a user can start the
Is this possible in an Android app? I want to make it so that
I call an async method which in turn calls needs to start several async
Hi I am developing an android app which is accessed by entering by a
I am working on an Android app which needs to be bilingual (English/Spanish). I
What PAM call do I have to make to reset a user's password? I

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.