Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm working at an android applicationand i've managed to monitor outgoing and receiving calls and save number,date into a database.

BroadcastReceiver callRcv = new BroadcastReceiver() {

        String currentDate;
        String Loc;
        String person = null;
        ContentValues cv = new ContentValues();
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            // Capture the call
            if (Intent.ACTION_NEW_OUTGOING_CALL.equals(action)) {
                String number = getResultData();

                Log.v(StorybookContentProvider.TAG_LOG,
                        "Outgoing call logged");
                Log.v(StorybookContentProvider.TAG_LOG,number);

                person = findNameByAddress(StorybookDynamicImport.this, number);
                currentDate = formatDate(System.currentTimeMillis());


                // Getting the position
                LocationManager.requestSingleUpdate(criteria,
                        locationListener, looper);
                Location location = LocationManager
                        .getLastKnownLocation(provider);
                Loc=GetAddressLocation(location);


                cv.put(StorybookContentProvider.CONTACT, person);
                Log.v(StorybookContentProvider.TAG_LOG, "Salvando" + person);
                cv.put(StorybookContentProvider.DATE, currentDate);
                Log.v(StorybookContentProvider.TAG_LOG, "Data" + currentDate);
                cv.put(StorybookContentProvider.EVENT_TYPE, "Chiamata effettuata");
                cv.put(StorybookContentProvider.LOCATION, Loc);
                Log.v(StorybookContentProvider.TAG_LOG, "DOVE" + Loc);
                getContentResolver().insert(StorybookContentProvider.CONTENT_URI, cv);


                // Sending a statusbar Notification
                CallNotification = notificationBuilder("StoryBook",
                        "Ho salvato l'evento chiamata!", null);
                NotificationManager.notify(1, CallNotification);

            }

also i've done a search motor that search these events (like search for contact,or date etcetc) and display that in a listview. now if i want to display the event(like missed call,received call etcetc) related to the single contact in call log when i tap the single event in listview how can i do that? there's something in android sdk that allows to do that?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.