Home | History | Annotate | Download | only in contacts

Lines Matching full:phone

33 import android.provider.ContactsContract.CommonDataKinds.Phone;
48 * Class used for displaying a dialog with a list of phone numbers of which
108 String phone = phoneItem.phoneNumber;
118 ContactsUtils.initiateSms(mContext, phone);
121 ContactsUtils.initiateCall(mContext, phone);
155 // Obtain a string representation of the phone type specific to the
156 // ContactSource associated with that phone number
158 DataKind kind = source.getKindForMimetype(Phone.CONTENT_ITEM_TYPE);
161 values.put(Phone.TYPE, item.type);
162 values.put(Phone.LABEL, item.label);
216 String phone = phonesCursor.getString(phonesCursor.getColumnIndex(Phone.NUMBER));
219 int type = phonesCursor.getInt(phonesCursor.getColumnIndex(Phone.TYPE));
220 String label = phonesCursor.getString(phonesCursor.getColumnIndex(Phone.LABEL));
222 phoneList.add(new PhoneItem(id, phone, accountType, type, label));