Home | History | Annotate | Download | only in com.example.android.lnotifications

Lines Matching refs:Cursor

25 import android.database.Cursor;
232 Cursor cursor = getActivity().getContentResolver().query(contactUri, null, null, null,
234 if (cursor != null && cursor.moveToFirst()) {
235 int idx = cursor.getColumnIndex(ContactsContract.Contacts.PHOTO_ID);
236 String hasPhoto = cursor.getString(idx);
261 Cursor cursor = getActivity().getContentResolver().query(contactUri, null, null, null,
263 if (cursor != null && cursor.moveToFirst()) {
264 int idx = cursor.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME);
265 String name = cursor.getString(idx);
266 idx = cursor.getColumnIndex(ContactsContract.Contacts.PHOTO_ID);
267 String hasPhoto = cursor.getString(idx);