Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
423 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
114 views

ContentObservers are basically useless

I'd love to be able to understand when a SPECIFIC item in the SMS or Call Log is changed. It's pretty easy to get notified when something changes in the appropriate content provider, but getting to ...
2
votes
2answers
128 views

how to stop phone calls to be log in the call log on android

I'm writting an application that block some phone calls. I use a broadcast receiver to listen to incoming calls: <receiver android:name="InComingCallReceiver"> <intent-filter ...
2
votes
1answer
52 views

Count the number of outgoing calls (2.2 or above)

I tried to find snipped for counting the number of outgoing calls in android but all I find ware unanswered questions end solution that doesn't work. I need this quick so if someone have a solution ...
2
votes
1answer
749 views

How can I access call log history on IOS5

I used FMDatabase and this path (/private/var/wireless/Library/CallHistory/call_history.db) to access the call logs on IOS4. After I updated to IOS5, it just gave me a "permission denied" exception. I ...
2
votes
2answers
723 views

Android Get Contact Picture from Call Log

It was pretty easy to get the Contact picture when querying the People.CONTENT_URI, with a simple People.loadContactPhoto(activity, ContentUris.withAppendedId(People.CONTENT_URI, contactId) ...
2
votes
4answers
122 views

access call logs through iPhone

Is there any way to access the call logs. The number from which the call has came and the duration for how long the call lasted? Also can we record the call in our application if our application is ...
2
votes
2answers
837 views

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 ...
2
votes
1answer
433 views

Error when trying to get the date on Android CallLog.Calls

Hey I'm trying to get the date from the CallLog.Calls in Android. I'm doing like this: import org.apache.http.impl.cookie.DateUtils; import android.database.Cursor; Cursor cursor = ...
2
votes
3answers
345 views

How to access call logs from J2ME apps?

I've been looking around and haven't found an answer to the above question. Many forums say it cannot be done in most phones, but most of those entries date back to 2006-2007 or more. I'm hoping ...
2
votes
2answers
2k views

android adding number to Call logs

Is it by anyway possible to write to call logs database?? I mean i want to add selected numbers to the call history. I tried searching the tutorial on net but couldn't find any... Though 1 thing is ...
1
vote
1answer
187 views

How to show toast status when phone got missed call that just happened?

i tried to figure out CallLog and event that just happening on phone, when it got phone call or missed call. Is it possible when i run my app and there's missed call, my app will show toast status..? ...
1
vote
1answer
195 views

BlackBerry: How to get call log/delete a call log entry

In BlackBerry platform, I would like to know if it is possible / how to do the following: Retrieve the call log (I am particularly interested in the incomming call record); Delete a specific call ...
1
vote
1answer
371 views

How can I update the contents of an entry in the Call Log?

I would like to update the CallLog.Calls.TYPE field of the first entry in the Android Call Log from MISSED to INCOMING. I have read books, the developers reference and googled this to death and am ...
1
vote
1answer
741 views

Android Froyo: my life with call_log

I'm stuck with the call_log functionality in Froyo. As many of you know, Froyo logs in call log not only calls but also each outgoing and incomming SMS message. You can chose in options to show all ...
1
vote
1answer
534 views

Am I forced to use the Android notifyChange() method?

Am I forced to use the notifyChange() method? I ask this because, when I call this method it enters on the onChange() method, but when I don't call the notifyChange() the onChange() method is not ...
1
vote
1answer
942 views

Android onChange() method only returns false

I have a ContentObserver onChange() declared as a subclasse in my activity. But it always returns false. Can anyone tell me why? (Update) This code must call the fillList if the CallLog content ...
1
vote
1answer
581 views

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 ...
1
vote
2answers
538 views

Get mobile phone operator from android CallLog

is it possible to get the name of the mobile phone operator from the android CallLog? E.g. in Germany phone numbers have xxxx - xxxxxxx form. Normally the first 4 numbers of the phone number are an ...
1
vote
1answer
537 views

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, ...
1
vote
1answer
119 views

CallLogs in Blackberry

i am working on CallLogs Sync Application in Blackberry and partially i have done it, one point that i didn't understand is how to add information to CallLogs. I have retrieved information from ...
0
votes
1answer
20 views

Android: Get CallLog History from a certain contact

I query the CallLog.Calls provider in order to retrieve a list of calls from a certain contact, based on the contact's display name. In particular, I use this query: String selection = ...
0
votes
0answers
47 views

Add information to phone app's call log entries?

I want to add a "forwarded call" info to the default android call log, i.e. without modifying the phone app. So far, I have used the CallLog.Calls content provider which allows me to view, modify and ...
0
votes
1answer
56 views

writing exception to parcel exception while updating contact name in android?

I need to update a column (cached_name) of table callog.calls in sql lite database in android.what I can't figure out is how to use update statement.I am unable to find anything regarding update ...
0
votes
0answers
28 views

run time exception writing to parcel while deleting contacts from recent call list?

I need to delete the selected entries from recent call list.I have pasted the code with which I am getting errors.But if it seems tedious I can put it in simpler way.let say I have a unique id i.e 3 ...
0
votes
1answer
125 views

How to delete particular contacts in recent call list in android?

I have created a hash map with unique keys and their boolean value. In keys I am getting the row unique ID of callog.calls. What I want is that those keys who has corresponding true value will get ...
0
votes
2answers
50 views

Calls from Android to Salesforce

Is there any way to log incoming and outgoing calls from my Android and move them into Salesforce?
0
votes
1answer
96 views

Android call log format time of call

I am collecting data from the call log. This is how I format the date of the call to my taste: DateFormat datePattern = DateFormat.getDateInstance(DateFormat.FULL); //Tuesday, October 18, 2011 Long ...
0
votes
3answers
87 views

Android extract time of calls from call log

I am looping through the call log and saving the dates of the calls into an array. During this process, I get dates like 1315164925580. Part of the call log loop: int dateColumn = ...
0
votes
0answers
45 views

Call drop cause

I need to implement a function that is able to retrieve the cause of the end of a phone call (network issue, signal strength too low, user close the call, ...). I have already done some test with ...
0
votes
2answers
91 views

Not getting first data of CallLog

I'm trying to get the call I just made/received. For that I'm using BroadcastReceiver and IntentServices. It happens like this: In my BroadcastReceiver class, I check if the state is OFFHOOK, if ...
0
votes
0answers
88 views

how to update call logs through android applications

I am trying to access call logs through android application. i have taken data through app and update the value of database but after updating i cant get the updated values in call list. code i ...
0
votes
2answers
110 views

Android progressdialog thread exception

My app uses the CallLog to collect data and put it into a listview. As this takes time, I tried to use progressdialog to show the user the status of the loading. Unfortunately (I have used ...
0
votes
1answer
83 views

Android date from calllog results in strange form

I am collecting dates of calls from the Calllog, but there is a problem with the dates. I used simpledateformat to format the numbers, but i get false data: years from 1903 to 1948 and from 1954-2036. ...
0
votes
1answer
252 views

Android call log reading

Hello guys I am facing a problem when I read the CallLog the values of the number are 0 and when I read for example the cached name its 2 here is my code and I put the permission String[] ...
0
votes
0answers
92 views

Call logs don't display the full number dialed

The call logs do not display the full dialed number on Android 2.3.3, but on 2.1 it does. On version 2.1 CallLog.Calls.NUMBER is equal to all the digits dialed but on version 2.3.3 ...
0
votes
1answer
110 views

What do the values mean for the CallLog.Calls.CACHED_NUMBER_TYPE field?

I have queried the call log on Android. Some calls have 0 and other have 1 for the CallLog.Calls.CACHED_NUMBER_TYPE field. What do these numbers mean? Does 1 mean "Home"? Where is this documented? ...
0
votes
1answer
313 views

Find the Missed call count in Android

Is there a way to find the missed call count in Android. I used call Log and I am able to get the total number of missed calls in the call log but not the missed calls after the last time the user ...
0
votes
0answers
72 views

Android: problem with CallLog Duration attribute after restart

my first question here. My app has some statistics about calls, messages etc. I have PhoneStateListener class with onCallStateChanged implemented and there i have this code: //... Cursor cursor = ...
0
votes
1answer
40 views

Android: How to fire CallDetailActivity intent?

I am super new to android, how to fire CallDetailActivity intent? From LogCat: Intent {dat=content://call_log/calls/48 cmp=com.android.contacts/.CallDetailActivity} 48 is the id, from CallLog. ...
0
votes
1answer
182 views

Android call log query giving illegalargumentexception: column '_id' does not exist

I'm trying to get a list of the user's calls and I'm getting the illegalargumentexception: column '_id' does not exist. This I find really weird because I did not create or have anything to do with ...
0
votes
0answers
178 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
3answers
336 views

Call log in Android

Is there any way by which one can get log call history(only duration of call) for a particular contact in android. Say there is "X" person in my contact list, I want to find out the duration of call ...
0
votes
1answer
735 views

Android: get call history of contact

i am using this code the get to the contact info of a contact (i am using it also - with a few modifications - to call, send sms or email the contact). I wonder if there is a way to show the call ...
0
votes
2answers
237 views

How to use Cursor's in non Activity Classes

I wan't to get data's from CallLog.Calls.CONTENT_URI in non Activity classes. Am using cursor to get these data's from CallLog. But in non activity class cursor shows some error so how i can how i can ...
0
votes
0answers
64 views

Android Calllogs Delete query

I am trying to delete a single entry from calllogs but it is deleting the entire calllogs... Any idea why this is happening? My Query: Integer _ID = 205; //it is a valid entry in database String ...
0
votes
0answers
89 views

Access Android call log in adobe air app

Does anyone know if it is possible to access the call log on an android phone in Adobe air?
0
votes
1answer
612 views

Call end listener in Android

I am developing an application in which I am storing call log details from CallLog provider. Android stores call logs in a database and I am copying new rows from that database. Now I want to copy ...
0
votes
0answers
783 views

android call log - missed/incoming/outgoing call icon

I have this problem.I would like to change the icon to indicate the type of call(missed,incoming oroutgoing). Not able to do so, any way to go about it?? package fypj.c; import ...
0
votes
0answers
396 views

android call log - prob

This are my code.How come when i run the program the data displayed are number only.For example, 117, 10 and 25 instead of the contact's name, type and duration?? Did i make a mistake some ...

1 2