Je suis en train de récupérer Téléphone Nombre donc en utilisantComment récupérer un identifiant d'un numéro de téléphone?
String addrWhere = Contacts.Phones.NUMBER + " = " + userNumber;
String id = "";
Cursor c = mContext.getContentResolver().query(
Contacts.Phones.CONTENT_URI,
new String[] { Contacts.Phones._ID }, addrWhere, null, null);
try {
if (c.getCount() > 0) {
c.moveToFirst();
id = c.getString(0);
Log.i("IDS", id);
}
} finally {
c.close();
}
return id;
Quelqu'un peut-il me faire connaître mon erreur dans ce domaine?
S'il vous plaît citer bits pertinents plutôt qu'un simple lien (sans aucun doute * * inclure le lien, mais * aussi * citation): http://meta.stackexchange.com/questions/8231/are-answers-that- just-contain-links-elsewhere-really-good-answers –
J'ai édité ma réponse. – stpn108