How to get call log from a number on android

Asked By 60 points N/A Posted on -
qa-featured

Is there a course to see the whole call history for a particular number? Enjoy I desire to see every last trace of the past times somebody has called me, is there anyway to consider this without scrolling through each and every telephone call? 

SHARE
Best Answer by Harpe byers
Answered By 0 points N/A #143442

How to get call log from a number on android

qa-featured

Yes, you can track the history of a contact log by doing the following steps:

There is a set called "CallLog.Calls" that contains the "CONTENT_URI" to query for call history.

For example:

@Override

publicvoidonCreate(BundlesavedInstanceState){

super.onCreate(savedInstanceState);

this.setContentView(R.layout.main);


String[]projection =newString[]{

CallLog.Calls._ID,CallLog.Calls.NUMBER};

Cursorquery =this.managedQuery(

CallLog.Calls.CONTENT_URI,projection,null,null,null);


ListAdapteradapter =newSimpleCursorAdapter(

this,android.R.layout.simple_list_item_1,query,

newString[]{CallLog.Calls.NUMBER},

newint[]{android.R.id.text1});

this.setListAdapter(adapter);{

Good Luck.
Answered By 0 points N/A #143444

How to get call log from a number on android

qa-featured

Hello!

It is possible to get the call history of a certain phone number by means of calling or visiting the nearest  customer service center and they will give you or email to your email address the detailed information about your account such as the call history of a phone number.

Best Answer
Best Answer
Answered By 10 points N/A #143446

How to get call log from a number on android

qa-featured

Dear Isabella,

To see call history of the same number on your Android phone depends on the version of your phone.

Android 2.2 version phones now provide you two beautiful options for easy access of call history –

1. By clicking on the “Call Log Discovery” where you can see the group of calls received or redialled or called for the same number or

2. You can also use “Call Log Shorter” which makes you call log shorter and easier to manage if received/called from the same number.

Related Questions