Tagged Questions

A class that provides access to information about the telephony services on an Android device

learn more… | top users | synonyms

11
votes
7answers
14k views

Android. How to hang up outgoing call?

I am developing an application where one of the things we need is to control the outgoing call, at least to be able to stop it from our application. For now I tried using Intent.ACTION_CALL to use ...
4
votes
2answers
96 views

How to not fire PhoneStateListener.CALL_STATE_RINGING if already talking and a second caller is calling

I am programming an app, that automatically answers a call. The problem is, that it should not answer one if I am already in a call and someone is ringing. Is there a way to achieve that? According ...
4
votes
1answer
1k views

How to know whether I am in a call on Android?

I want to know whether I am in a call. If I am in a call then start the service (service part is clear). How do I do this? While attending the call I need to call the service... I am unaware of how ...
3
votes
3answers
76 views

Trouble with reading phone state

I want to perform some operation (Pause game) in my application when a call came. But reading the phone state is not working. I have given permission(READ_PHONE_STATE) in the manifest. Nothing is ...
3
votes
1answer
200 views

How to distinguish the screen on/off status while incoming call?

My app uses the TelephonyManager.ACTION_PHONE_STATE_CHANGED for some actions. But I want a different action while the phone rang when the user was present (screen was on) and different action when the ...
3
votes
1answer
470 views

how to find outgoing number in Telephony manager

I am using this: public void onCallStateChanged(int state, String incomingNumber) which is listening to: telephonyManager.listen(listener,PhoneStateListener.LISTEN_CALL_STATE); I want to know ...
3
votes
1answer
735 views

Caller ID on Android - How to Suppress/Delay Default incoming call screen?

We are developing Caller ID application and till now we are able to replace default incoming call screen with our own layout/caller ID screen following ...
3
votes
1answer
320 views

Unable to get non-empty string from PhoneStateListener::onCallStateChanged

Source: listener = new PhoneStateListener() { @Override public void onCallStateChanged(int state, String incomingNumber) { super.onCallStateChanged(state, ...
2
votes
0answers
106 views

Why is getNetworkOperator not reliable for CDMA?

Can anyone say why the documentation for the getNetworkOperator function of TelephonyManager states that this can return unreliable result for CDMA ? getNetworkOperator documentation Availability: ...
2
votes
0answers
251 views

Programmatically check if PIN lock is active in Android

Here's the thing - I'm doing a security app that needs to be able to check if the PIN code is set or not. The official API returns the same value regardless of the PIN state, and I've been ...
2
votes
1answer
683 views

How can I access Android private API's which doesn't exposed in TelephonyManager?

I intend to write tests related to the Phone and Direct SIM write. What are the alternatives in case the required APIs aren't exposed in TelephonyManager but exist as private APIs in PhoneBase.java, ...
1
vote
1answer
37 views

Does android TelephonyManager buffer GSMCellILocation?

I have been facing a scenario where I have observed that Android's TelephonyManager is providing me location area code and cell ID even if there is no SIM card in the phone. cellLocation = ...
1
vote
2answers
97 views

Getting country code

I am implementing In App Purchase.In the in app product list,I have configured few products for country A and few products for country B. So my application should show only those products configured ...
1
vote
0answers
69 views

issue while getting state of outgoing call in android?

I am trying to come back to my activity once the outgoing call is ended.I found the similar questions and tried implementing the code but the problem is oncallstatechange() method,the state is 0 all ...
1
vote
1answer
131 views

transmission of call logs in the background using a service

I am trying to implement a background service to transmit logs from a calllog database to a server and I have tried out a lot of things ... timer, a thread Looping infinitely... but it seems nothing ...
1
vote
0answers
209 views

Why might both the TELEPHONY_SERVICE and WIFI_SERVICE be unavailable on Android tablet?

I have a user with a Sprint Evo View 4G Tablet, and we have a feature that requires either the TELEPHONY_SERVICE or WIFI_SERVICE to be accessible to our app (and we of course request these permissions ...
1
vote
1answer
81 views

TelephonyManager instantiation help

I can't seem to be able to declare a TelephonyManager in android, this is what I'm trying to do: TelephonyManager tele = Context.getSystemService(Context.TELEPHONY_SERVICE); Am I doing this right?
1
vote
1answer
433 views

How to send fake call broadcast on android

I am trying to send a broadcast to simulate an incoming call. I added the permission in AndroidManifest.xml file, <uses-permission ...
1
vote
1answer
298 views

What does the different Call states in the Android telephony stack represent?

The internal Android class com.android.internal.telephony.Call contains an enum called State and defined as follows: public enum State { IDLE, ACTIVE, HOLDING, DIALING, ALERTING, INCOMING, ...
1
vote
1answer
665 views

getting the current caller phone number WITHOUT using ACTION_PHONE_STATE_CHANGED

I have an application that needs to check whether there is an ongoing call from a specific contact. I know I can use the ACTION_PHONE_STATE_CHANGED broadcast intent to get the calling phone number at ...
1
vote
1answer
841 views

getNeighboringCellInfo() returning null list

I'm struggling a little trying to get neighbour cells info (for the current cell info, everything works fine): mTelephMgr=(TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); ...
1
vote
1answer
370 views

How to check for phone network on Android devices

I know how to check if I have internet access (using the code from this post),but is it possible to check if a phone has telephone network access? For example someone might have access to the ...
1
vote
1answer
356 views

get number i am calling in android

i need to get the number that i am calling from my android device programmatically. what i'm doing now is the following: i listen for android.intent.action.PHONE_STATE being broadcasted which means ...
1
vote
1answer
278 views

Telephony API not working properly in Android2.3

I am working on application which will use the Telephony API. I am using: Context context = getBaseContext(); TelephonyManager tMgr = (TelephonyManager) getSystemService(TELEPHONY_SERVICE); try { ...
1
vote
1answer
890 views

Android ITelephony class context

I am currently digging around in the Android source code, in order to understand the different telephony related packages and containing classes. One class I have a problem understanding is the ...
1
vote
2answers
469 views

How to tell if handset is on WiMAX

I use TelephonyManager to get the network type as in getNetworkType(). Currently I see only CDMA and GSM networks only. How do I detect WiMAX as the networkType. Sprint's HTC EVO 4G phone supports ...
1
vote
2answers
1k views

Android Handle phone call

I have audio recoding, when an phone call come I need to stop the recoding, how can I do this?
1
vote
2answers
168 views

Relative speeds of TelephonyManager's types?

There are a number of network types defined in TelephonyManager: NETWORK_TYPE_GPRS NETWORK_TYPE_EDGE NETWORK_TYPE_UMTS NETWORK_TYPE_CDMA NETWORK_TYPE_EVDO_0 NETWORK_TYPE_EVDO_A NETWORK_TYPE_1xRTT ...
0
votes
0answers
21 views

Android class to measure total time length of calls for certain period of time

So, I am trying to create an app that measures relevant data that could be used to optimise how and when the Base Stations are used. Basically, my app would have to collect information about how, ...
0
votes
0answers
14 views

Android app to optimise the use of mobile networks

I am trying to create an app that measures relevant data that could be used to optimise how and when the Base Stations are used. Basically, my app would have to collect information about how, when ...
0
votes
1answer
43 views

How can I get a mobile number on Android Real device? I am using Android phonegap concept

I want to display my phone number on Android Phone. I am using the following code for displaying the number on the phone, but I am getting a null value on the phone. Here is my code: TelephonyManager ...
0
votes
0answers
42 views

Android: How to provide customized vibration on specific incoming calls

The program functions like this: the user has a list of phone numbers, for which the cellphone could vibrate upon an incoming call only when no other system-wide application would provide vibration ...
0
votes
0answers
71 views

Initiate CSD data call from Android app

I need to initiate a Circuit Switched Data (CSD) call from my android app in order to communicate with some legacy hardware. Is this possible - if so, would you be able to give me a point in the ...
0
votes
1answer
88 views

How to get Operator Name for sim in slave slot

Hey can any one answer for Dual sim device how to getNetworkOperatorName which is in slave slot.And my master sim is deactivated.Its urgent please help as soon as possible.
0
votes
0answers
40 views

network capability of android phone?

How to determine the network type of android phone . Let us assume that the device has gingerbread and higher OS . How do i find out whether the device is 1xRTT-capable device or 1xEVDO -capable ...
0
votes
0answers
118 views

setRingerMode during incoming call - RINGING

I have a task - change the ringer volume immediately when phone ringing. For example: After detecting, that there is incoming call I need to set ringer volume to 0 (mute) and vibrator also should be ...
0
votes
0answers
59 views

How to set data connection(3G) into suspended state programatically in android?

I tried to set data connection enabled/disabled (i.e. TelephonyManager.DATA_CONNECTED/TelephonyManager.DATA_DISCONNECTED``) through reflecting TelephonyManager class, and it worked. but I don't know ...
0
votes
1answer
333 views

Getting reliable MSISDN from Android Phone? VoiceMailNumber Line1Number

BEFORE anyone thinks that this is a repeat question, I have not found this information anywhere. First off the MSISDN is the same as the phone number. I have been looking into seeing if it if ...
0
votes
2answers
192 views

Issue - IMEI - HTC Flyer Tab [Telephony Manager]

I have HTC Flyer tab with version Android 2.3.4. I am not able to retrieve the IMEI number through TelephonyManager.getDeviceId(). It always return null. Can somebody try to read out the IMEI on ...
0
votes
1answer
135 views

Unable to retrieve phone number in android 2.2

Currently I have developed one application on android 2.3 platform. But when i test it on android 2.2 its not able to retrieve the SIM number or mobile number. Its major requirement in my application. ...
0
votes
1answer
181 views

Need to call a activity in PhoneStateListener

I need to call a activity when the phone state comes from ringing to idle. But It says The constructor Intent(MyPhoneStateListener, Class) is undefined. How can call the activity. public class ...
0
votes
1answer
155 views

Broadcastreceiver creating multiple instances of TelephonyManager

This is my BroadcastReceiver public class PlayAudio extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { TelephonyManager tm = ...
0
votes
1answer
297 views

Android 2.3.4 TelephonyManager

I updated my HTC Flyer to Android 2.3.4. Now I am not able to retrieve the IMEI number through TelephonyManager.getDeviceId(). It always return null. Can somebody try to read out the IMEI on another ...
0
votes
0answers
94 views

Broadcast for no SIM Card

Is there a broadcast to check for no SIM card? Basically I want to check if there is SIM absent using TelephonyManager.SIM_STATE_ABSENT Just wondering if there is trigger for it. Else I suppose that I ...
0
votes
1answer
96 views

PhoneStateListener changes are not handled

I need to intercept changes in the signal strength on an android device. I've seen different approaches around in StackOverflow. In my case, it's an Android Background Service that is trying to find ...
0
votes
0answers
89 views

Need to read IMSI value when there is no ISIM

I need to get IMSI value when there is no ISIM, but rather have USIM. Can anyone please guide me on Which API to use?
0
votes
1answer
380 views

knowing the network operator name

I want to get my network operator name in my app. I am using fallowing methods in the TelephonyManager to get this: TelephonyManager mTeleManager = (TelephonyManager) ...
0
votes
0answers
197 views

Cod for Call log in Android

I want to write an android service which is to be notified whenever the call(both incoming and outgoing) is done and then store the call details in my sqlite. This service is to be integrated with an ...
0
votes
0answers
283 views

How to identify active call status using Telephony in Android API

ie change of phone state from New outgoing call to Call active. I am able to detect these 3 states after listening on ACTION_NEW_OUTGOING_CALL broadcast. TelephonyManager.CALL_STATE_OFFHOOK: ...
0
votes
0answers
107 views

What are the difference between registerForNewRingingConnection() and registerForIncomingRing() notifications?

In the internal abstract Android class com.android.internal.telephony.Phone there are two notifications declared as follows: /** * Notifies when a new ringing or waiting connection has ...

1 2