Joke Collection Website - Blessing messages - How to get the names of sender and receiver in android SMS database

How to get the names of sender and receiver in android SMS database

The name is not stored in the SMS database, only the number of the recipient is stored.

The recipient_ids field in the thread table indicates which recipients are in this conversation, and the specific information of recipients/senders will be stored in the canonical_addresses table.

According to the number, you can query the contact database and get the recipient's name and other information.

Please refer to Contact.java getContactOffphone Number (string number) for contact information inquiry method.

/5. 1. 1 _ R6/xref/packages/apps/Mms/src/com/Android/Mms/data/contact . Java