List of usage examples for android.provider ContactsContract STREQUENT_PHONE_ONLY
String STREQUENT_PHONE_ONLY
To view the source code for android.provider ContactsContract STREQUENT_PHONE_ONLY.
Click Source Link
From source file:com.silentcircle.contacts.ContactTileLoaderFactory.java
public static CursorLoader createStrequentPhoneOnlyLoader(Context context) { Uri uri = Contacts.CONTENT_STREQUENT_URI.buildUpon() .appendQueryParameter(ContactsContract.STREQUENT_PHONE_ONLY, "true").build(); return new CursorLoader(context, uri, COLUMNS_PHONE_ONLY, null, null, null); }