getting the call logs of incoming and outgoing calls in android programmatically

拈花ヽ惹草 提交于 2019-12-03 06:25:48

问题


I am making an app in which I want to get the call logs of all incoming, outgoing and missed calls. How can I do that?


回答1:


Please refer the following link:

Get Android phone call history/log programmatically




回答2:


All the answers here are using managedQuery which is now deprecated. It should be replaced with getContext().getContentResolver().query() method instead, as mentioned here and demonstrated here.

Here is a short sample code, based on those examples:

String[] projection = new String[] {
                CallLog.Calls.CACHED_NAME,
                CallLog.Calls.NUMBER,
                CallLog.Calls.TYPE,
                CallLog.Calls.DATE
        };
// String sortOrder = ContactsContract.Contacts.DISPLAY_NAME + " COLLATE LOCALIZED ASC";

 Cursor cursor =  mContext.getContentResolver().query(CallLog.Calls.CONTENT_URI, projection, null, null, null);
 while (cursor.moveToNext()) {
    String name = cursor.getString(0);
    String number = cursor.getString(1);
    String type = cursor.getString(2); // https://developer.android.com/reference/android/provider/CallLog.Calls.html#TYPE
    String time = cursor.getString(3); // epoch time - https://developer.android.com/reference/java/text/DateFormat.html#parse(java.lang.String
    }
cursor.close();



回答3:


Yup. its works me:) try this.

private void getCallDetails() {

    StringBuffer sb = new StringBuffer();
    Cursor managedCursor = managedQuery(CallLog.Calls.CONTENT_URI, null, null, null, null);
    int number = managedCursor.getColumnIndex(CallLog.Calls.NUMBER);
    int type = managedCursor.getColumnIndex(CallLog.Calls.TYPE);
    int date = managedCursor.getColumnIndex(CallLog.Calls.DATE);
    int duration = managedCursor.getColumnIndex(CallLog.Calls.DURATION);
    sb.append("Call Details :");
    while (managedCursor.moveToNext()) {
        String phNumber = managedCursor.getString(number); // mobile number
        String callType = managedCursor.getString(type); // call type
        String callDate = managedCursor.getString(date); // call date
        Date callDayTime = new Date(Long.valueOf(callDate)); 
        String callDuration = managedCursor.getString(duration);
        String dir = null;
        int dircode = Integer.parseInt(callType);
        switch (dircode) {
            case CallLog.Calls.OUTGOING_TYPE:
                dir = "OUTGOING";
                break;

            case CallLog.Calls.INCOMING_TYPE:
                dir = "INCOMING";
                break;

            case CallLog.Calls.MISSED_TYPE:
                dir = "MISSED";
                break;
        }
        sb.append("\nPhone Number:--- " + phNumber + " \nCall Type:--- " + dir + " \nCall Date:--- " + callDayTime + " \nCall duration in sec :--- " + callDuration);
        sb.append("\n----------------------------------");
    }
    managedCursor.close();
    miss_cal.setText(sb);
    Log.e("Agil value --- ", sb.toString());
}
  • Note :

    1. You want to get the particular call type ? then use the below code.

    2. For eg :- if i want income call alone then command/remove the same code in the switch case beneath

    3. Then use the below code inside income call case.

  sb.append("\nPhone Number:--- " + phNumber + " \nCall Type:--- " + dir + " \nCall Date:--- " + callDayTime + " \nCall duration in sec :--- " + callDuration);               
sb.append("\n-----Agil----------------------------------");



回答4:


public class MainActivity extends Activity 
{
TextView textView = null;


int callcode;
String callType ;
String phNum;
Date callDate;
String callTypeCode;
String strcallDate;
String callDuration;
String currElement;
static boolean ring = false;
static boolean callReceived = false;


StringBuffer sb = new StringBuffer();

@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    textView = (TextView) findViewById(R.id.textview_call);


                SmsManager sms = SmsManager.getDefault();
                String strOrder = android.provider.CallLog.Calls.DATE + " DESC";

                /* Query the CallLog Content Provider */
                @SuppressWarnings("deprecation")
                Cursor managedCursor = managedQuery(CallLog.Calls.CONTENT_URI, null,
                        null, null, strOrder);

                int number = managedCursor.getColumnIndex(CallLog.Calls.NUMBER);

                int type = managedCursor.getColumnIndex(CallLog.Calls.TYPE);

                int date = managedCursor.getColumnIndex(CallLog.Calls.DATE);

                int duration = managedCursor.getColumnIndex(CallLog.Calls.DURATION);

                sb.append("Call Log :");



                if(managedCursor.moveToFirst())
                {
                    String phNum = managedCursor.getString(number);

                    String callTypeCode = managedCursor.getString(type);

                    String strcallDate = managedCursor.getString(date);

                    Date callDate = new Date(Long.valueOf(strcallDate));

                    String callDuration = managedCursor.getString(duration);

                    String callType = null;

                    int callcode = Integer.parseInt(callTypeCode);

                    switch (callcode) 
                    {
                    case CallLog.Calls.OUTGOING_TYPE:


                        callType = "Outgoing";



                        //sms.sendTextMessage(phNum, null, "Outgoing msg",  null, null);  


                        break;
                    case CallLog.Calls.INCOMING_TYPE:

                        callType = "Incoming";
                        //sms.sendTextMessage(phNum, null, "Incoming msg",  null, null);  


                        break;
                    case CallLog.Calls.MISSED_TYPE:

                        callType = "Missed";
                    //sms.sendTextMessage(phNum, null, "Missed msg",  null, null);  

                        break;
                    }
                    sb.append("\nPhone Number:--- " + phNum + " \nCall Type:--- "
                            + callType + " \nCall Date:--- " + callDate
                        + " \nCall duration in sec :--- " + callDuration);
                    sb.append("\n----------------------------------");
                }


                managedCursor.close();
            textView.setText(sb);

}

}    


来源:https://stackoverflow.com/questions/7480132/getting-the-call-logs-of-incoming-and-outgoing-calls-in-android-programmatically

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!