A call log on a mobile phone is a historical list of all made and received phone calls.
Questions tagged [calllog]
296 questions
2
votes
1 answer
Ways to export RingCentral call log as CSV
Call log record can be obtain using RingCentral API and can be filtered using date To (dateTo) and From (dateFrom).
I have went through the API Reference to get call log with API here.
We can see the following API is used to get all the call log…

Tanmoy Kumar
- 57
- 3
2
votes
2 answers
unknown call types when querying device call logs
In the snippet below, I am trying to read call logs and print their call type
Cursor cursor = context.getContentResolver().query(Calls.CONTENT_URI, ...);
while (cursor.moveToNext()) {
int callType =…

zhirzh
- 3,273
- 3
- 25
- 30
2
votes
2 answers
How to get the last declined number of iphone in iphone sdk
I need to get access to the call log of an iphone programatically. I came to know that it is not possible to get the call log in ios sdk. Is there any new API's available to get access of the call log of an iphone approved by apple. I've gone…

Monish
- 53
- 8
2
votes
1 answer
RingCentral API CallLog giving Response in a different time zone
Thanks for looking at my problem. I am Downloading RingCentral Call log using API. But not getting accurate call log of provided date. For example, if I like to download call log between 2018-6-4 00:00:00 TO 2018-6-5 23:59:59 then it's downloading…

Atik
- 57
- 7
2
votes
1 answer
RingCentral OAuth Sever-Only Password Flow with Ruby's HTTParty
I'm currently trying to write a Data Extraction Application for RingCentral to dump CSVs to AWS as part of a Data Warehousing project. I've reviewed several pieces of their documentation outlining how to authenticate using the Password Flow, but…

Mitch Main
- 21
- 3
2
votes
1 answer
How to know that the content provider of calls has changed
Hey, I'd like to know if there is a way to know if the content provider of callings has changed. I mean, if I make a call, or I answer a call, it returns a "flag" that a new log has been added to the call log, or the place where Android store…

rogcg
- 10,451
- 20
- 91
- 133
2
votes
0 answers
How to get the number, From number pad before dialing In android
I search every where for this ..i didn't get it any where please help me..
How can i get the number from number pad before dialing ..
I just want when number pad number count will be 11 or 12 digit .. I just want a toast message showing the number..…

Tapan Kumar Patro
- 767
- 1
- 7
- 18
2
votes
0 answers
how to get the phone number using android call log?
How to get receiver phone number using android call log? For example I am receiving the call (Incoming) how to get the my own phone number. Now I can get the phone number from whom I am receiving call.

Vigneshwaran T
- 307
- 2
- 6
- 18
2
votes
1 answer
I want to know the phone number of call, deleted from the call logs
I am able to get notified whenever there is a change in call log, but i need the number as well.
Here is my code:
public class MainActivity extends AppCompatActivity {
CallLogChangeObserverClass callLogChangeObserverClass = null;
…

Ramesh Kanuganti
- 275
- 1
- 11
2
votes
1 answer
How to force refresh on CallLog.Calls.CACHED_NAME column?
My goal is to collect all unknown phone numbers from the Call Log.
This can be achieved by the following code:
private static final String[] CALLOG_PROJECTION = {CallLog.Calls._ID,
CallLog.Calls.CACHED_NAME, CallLog.Calls.NUMBER};
private…

csbg
- 89
- 1
- 8
2
votes
1 answer
How can i get 3 Top number from CallLog
How can I get the top three numbers from CallLog, on the basis of the total duration of calls to the number?
For example, given these calls/durations:
0123-2323 for 3min
0123-2323 for 59min
3232-3210 for 15min
The total for 0123-2323 is…

Nouman Shah
- 534
- 1
- 9
- 22
2
votes
1 answer
How to access Call Log in Android Watch?
I use this code in android app to get the missed call.
cursor = this.getContentResolver().query(
Uri.parse("content://call_log/calls"),
projection,
selection,
selectionArgs,
sortOrder
);
while (cursor.moveToNext()) {
String…

mengpq
- 56
- 6
2
votes
3 answers
How to Delete Call Log
Can any one please tell me how to delete call log from android phone,
I am using following line of code
getActivity().getContentResolver().delete(CallLog.Calls.CONTENT_URI, null, null);
but, this is not working for me I want to delete whole call…

Ankita
- 21
- 1
- 7
2
votes
0 answers
LG G2 call log types are different from Android CallLog.Calls reference
I am trying to write an app the analyses user's call logs and find out 'close' people from the recent call activities. I am working with a G2, and I am facing an issue.
Reading from the CallLog.Calls Android Developers References, there are…

Seop Yoon
- 2,429
- 3
- 14
- 18
2
votes
1 answer
How can we hide call logs of specific contact in android?
I am trying to hide call logs from particular contact. For this I have created broadcast receiver for receive event of incoming / outgoing / missed call / call hangup.
But how can I get call details on call hangup event ?
I know we can get…

Hardik Joshi
- 9,477
- 12
- 61
- 113