Skip to content Skip to sidebar Skip to footer

How To List All Call Logs From Log List Including Sms And Email Logs Also?

I want to access the sms logs also . but I don't find any way , I already accessed the call logs using CallLog.Calls ,it's unable to list sms logs . below code is listing only cal

Solution 1:

this is just suggestion. you get better answer rather then this...

see if you want to get sms log then use below code.. and you already get call log.. so if you want to mix call and sms log in one list then you must have to do that by date..

in call log you get date & time in sms also you get date & time

sms log code...

put this in method and use your own way..

CharSequencecontentTitle= getString(R.string.app_name);
            finalProgressDialogprogDailog= ProgressDialog.show(
                    All_logs_tab.this, contentTitle, "Please wait...", true);
            finalHandlerhandler=newHandler() {
                @OverridepublicvoidhandleMessage(Message msg) {
                      /* finish sms load */
                }
            };

            newThread() {
                publicvoidrun() {
                    try {

                        UrimyMessage= Uri.parse("content://sms/");
                        ContentResolvercr= con.getContentResolver();
                        Cursorc= cr.query(myMessage, newString[] { "_id",
                                "address", "date", "body", "read" }, null,
                                null, null);

                        startManagingCursor(c);
                        getSmsLogs(c, con);

                    } catch (Exception e) {
                    }
                    handler.sendEmptyMessage(0);
                    progDailog.dismiss();
                }
            }.start();

................................................. i added all sms details in array list

ArrayList<String> sms_id = newArrayList<String>();
     ArrayList<String> sms_num = newArrayList<String>();
     ArrayList<String> sms_Name = newArrayList<String>();
     ArrayList<String> sms_dt = newArrayList<String>();
     ArrayList<String> sms_body = newArrayList<String>();

........................................................

publicvoidgetSmsLogs(Cursor c, Context con) {

        if (sms_num.size() > 0) {
            sms_id.clear();
            sms_num.clear();
            sms_Name.clear();
            sms_body.clear();
            sms_dt.clear();
        }

        try {

            if (c.moveToFirst()) {
                do {



                    if (c.getString(c.getColumnIndexOrThrow("address")) == null) {
                        c.moveToNext();
                        continue;
                    }

                    String _id = c.getString(c.getColumnIndexOrThrow("_id"))
                            .toString();

                    StringNumber = c.getString(
                            c.getColumnIndexOrThrow("address")).toString();
                    String dat = c.getString(c.getColumnIndexOrThrow("date"))
                            .toString();

                    Stringas = (String) get_dt(dat, "dd/MM/yyyy, hh.mma");
                    StringBody = c.getString(c.getColumnIndexOrThrow("body"))
                            .toString();
                    String name = getContactDisplayNameByNumber("" + Number,
                            con);

                    if (name.length() <= 0 || name.length() == 1) {
                        name = "no name";
                    }
                    sms_id.add(_id);
                    sms_num.add(Number);
                    sms_Name.add("" + name);
                    sms_body.add(Body);
                    sms_dt.add(as);

                } while (c.moveToNext());
            }
            c.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

Solution 2:

You need the URI to the SMS messages's table this will retrieve you the data. It can be found in the base source code, however; it is not recommended by Google to do this.

Solution 3:

use this link Android call logs to retrieve call logs. for sms do the same by using SMS_URI="content://sms" , but it is not recommended as it is not public URi.

Post a Comment for "How To List All Call Logs From Log List Including Sms And Email Logs Also?"