Skip to content Skip to sidebar Skip to footer

How Can I Separate Incoming And Outgoing Call Recorded Files In Listview In Android

I am developing recording application. In that it will record all incoming and outgoing calls and am displayed these calls in ListView. I want to display separate symbols for incom

Solution 1:

You would have to create a a broadcastreceiver. The receiver detects if an call is incoming or outgoing. There you can record your calls. Use TelephonyManager Class. And add permissions in the manifest.

In the link is a basic description with source-code download:http://www.devlper.com/2010/08/detecting-incoming-and-outgoing-calls-in-android/

If you get that working, you just would have to create a Dictionary(HashMap). There you could set the dictionary-key to save numbers and a key-value for incoming or outgoing calls.

Get familiar with custom ListView to create a ListView with an image.http://www.androidhive.info/2012/02/android-custom-listview-with-image-and-text/

Create 2 images, incoming and outgoing. Lopp through your dictionary and set the images right.

Greets

Post a Comment for "How Can I Separate Incoming And Outgoing Call Recorded Files In Listview In Android"