I implemented a small application which will list all the SMS from INBOX and displays both the Contact number and Name.
I have to use two URIs, one is to get the SMS and the other is to get the Contact information related to that SMS.
This approach is having lot of performance issue while listing all the SMS with the Contact Name. It is taking quiet a long time in my 600MHz Android Phone.
But my native SMS application is launching within fraction of seconds. I really don't know how to achieve this.
One way I am thinking of using JOIN conditions on two URIs because I don't know how to use rawQuery on Content://SMS/inbox and the Contacts Data.
Any help would be appreciated. Thanks in Advance..