इस पेज पर, अपने यूज़र इंटरफ़ेस (यूआई) में QuickContactBadge
जोड़ने और उसमें डेटा को बांधने का तरीका बताया गया है. QuickContactBadge
एक ऐसा विजेट है जो शुरू में,
थंबनेल इमेज के तौर पर दिखता है. थंबनेल इमेज के लिए किसी भी Bitmap
का इस्तेमाल किया जा सकता है. हालांकि, आम तौर पर, संपर्क की फ़ोटो के थंबनेल से डिकोड किए गए Bitmap
का इस्तेमाल किया जाता है.
छोटी इमेज, कंट्रोल के तौर पर काम करती है. जब उपयोगकर्ता इमेज पर टैप करते हैं, तो QuickContactBadge
बड़ा हो जाता है. इससे डायलॉग बॉक्स में ये चीज़ें शामिल हो जाती हैं:
- बड़ी इमेज
- संपर्क से जुड़ी बड़ी इमेज या अगर कोई इमेज उपलब्ध न हो, तो प्लेसहोल्डर ग्राफ़िक.
- ऐप्लिकेशन के आइकॉन
- जानकारी वाले हर डेटा के लिए एक ऐप्लिकेशन आइकॉन, जिसे पहले से मौजूद ऐप्लिकेशन से मैनेज किया जा सकता है. उदाहरण के लिए, अगर संपर्क की जानकारी में एक या उससे ज़्यादा ईमेल पते शामिल हैं, तो ईमेल आइकॉन दिखता है. जब उपयोगकर्ता आइकॉन पर टैप करते हैं, तो संपर्क के सभी ईमेल पते दिखते हैं. जब उपयोगकर्ता किसी एक पते पर टैप करते हैं, तो ईमेल ऐप्लिकेशन, चुने गए ईमेल पते पर मैसेज लिखने के लिए एक स्क्रीन दिखाता है.
QuickContactBadge
व्यू में, किसी संपर्क की जानकारी को तुरंत ऐक्सेस किया जा सकता है. साथ ही, उससे तुरंत संपर्क किया जा सकता है. उपयोगकर्ताओं को किसी संपर्क की जानकारी खोजने, कॉपी करने, और फिर उसे सही ऐप्लिकेशन में चिपकाने की ज़रूरत नहीं होती. इसके बजाय, वे QuickContactBadge
पर टैप करके, अपनी पसंद का संपर्क तरीका चुन सकते हैं और उस तरीके से जुड़ी जानकारी को सीधे सही ऐप्लिकेशन में भेज सकते हैं.
QuickContactBadge व्यू जोड़ना
QuickContactBadge
जोड़ने के लिए, अपने लेआउट में
<QuickContactBadge>
एलिमेंट डालें, जैसा कि यहां दिए गए उदाहरण में दिखाया गया है:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> ... <QuickContactBadge android:id=@+id/quickbadge android:layout_height="wrap_content" android:layout_width="wrap_content" android:scaleType="centerCrop"/> ... </RelativeLayout>
सेवा देने वाली कंपनी का डेटा पाना
QuickContactBadge
में किसी संपर्क को दिखाने के लिए, आपको संपर्क के लिए कॉन्टेंट यूआरआई और छोटी इमेज के लिए Bitmap
की ज़रूरत होगी. कॉन्टेंट यूआरआई और Bitmap
, दोनों को कॉन्टैक्ट्स प्रोवाइडर से मिले कॉलम से जनरेट किया जाता है. इन कॉलम को प्रोजेक्शन के हिस्से के तौर पर बताएं. इसका इस्तेमाल,
अपने Cursor
में डेटा लोड करने के लिए किया जाता है.
Android 3.0 (एपीआई लेवल 11) और उसके बाद के वर्शन के लिए, अपने अनुमान में ये कॉलम शामिल करें:
Android 2.3.3 (एपीआई लेवल 10) और इससे पहले के वर्शन के लिए, इन कॉलम का इस्तेमाल करें:
इस पेज पर दिए गए उदाहरणों में यह माना गया है कि ऐसा Cursor
लोड किया गया है जिसमें ये कॉलम और चुने गए अन्य कॉलम शामिल हैं. Cursor
में कॉलम की सूची वापस पाने का तरीका जानने के लिए, संपर्कों की सूची वापस पाना देखें.
संपर्क यूआरआई और थंबनेल सेट करना
ज़रूरी कॉलम मिलने के बाद, डेटा को
QuickContactBadge
से बाइंड किया जा सकता है.
संपर्क यूआरआई सेट करें
संपर्क के लिए कॉन्टेंट यूआरआई सेट करने के लिए, CONTENT_LOOKUP_URI
पाने के लिए getLookupUri(id,lookupKey)
को कॉल करें. इसके बाद, संपर्क सेट करने के लिए assignContactUri()
को कॉल करें. यह नीचे दिए गए उदाहरण में दिखाया गया है:
Kotlin
// The Cursor that contains contact rows var cursor: Cursor? = null // The index of the _ID column in the Cursor var idColumn: Int = 0 // The index of the LOOKUP_KEY column in the Cursor var lookupKeyColumn: Int = 0 // A content URI for the desired contact var contactUri: Uri? = null // A handle to the QuickContactBadge view ... cursor?.let { cursor -> /* * Insert code here to move to the desired cursor row */ // Gets the _ID column index idColumn = cursor.getColumnIndex(ContactsContract.Contacts._ID) // Gets the LOOKUP_KEY index lookupKeyColumn = cursor.getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY) // Gets a content URI for the contact contactUri = ContactsContract.Contacts.getLookupUri( cursor.getLong(idColumn), cursor.getString(lookupKeyColumn) ) binding.badge.assignContactUri(contactUri) }
Java
// The Cursor that contains contact rows Cursor cursor; // The index of the _ID column in the Cursor int idColumn; // The index of the LOOKUP_KEY column in the Cursor int lookupKeyColumn; // A content URI for the desired contact Uri contactUri; ... /* * Insert code here to move to the desired cursor row */ // Gets the _ID column index idColumn = cursor.getColumnIndex(ContactsContract.Contacts._ID); // Gets the LOOKUP_KEY index lookupKeyColumn = cursor.getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY); // Gets a content URI for the contact contactUri = Contacts.getLookupUri( cursor.getLong(idColumn), cursor.getString(lookupKeyColumn) ); binding.badge.assignContactUri(contactUri);
जब उपयोगकर्ता QuickContactBadge
आइकॉन पर टैप करते हैं, तो डायलॉग में संपर्क की जानकारी दिखती है.
फ़ोटो का थंबनेल सेट करना
QuickContactBadge
के लिए संपर्क यूआरआई सेट करने पर, संपर्क की थंबनेल फ़ोटो अपने-आप
लोड नहीं होती. फ़ोटो लोड करने के लिए, संपर्क की Cursor
पंक्ति से फ़ोटो का यूआरआई पाएं. इसके बाद, उस फ़ाइल को खोलने के लिए इसका इस्तेमाल करें जिसमें संपीड़ित की गई थंबनेल फ़ोटो है. साथ ही, फ़ाइल को Bitmap
में पढ़ें.
ध्यान दें: PHOTO_THUMBNAIL_URI
कॉलम, 3.0 से पहले के प्लैटफ़ॉर्म वर्शन में उपलब्ध नहीं है. उन वर्शन के लिए, आपको Contacts.Photo
सबटेबल से यूआरआई हासिल करना होगा.
सबसे पहले, वैरिएबल सेट अप करें, ताकि Cursor
को ऐक्सेस किया जा सके. इसमें
Contacts._ID
और
Contacts.LOOKUP_KEY
कॉलम शामिल हैं:
Kotlin
// The column in which to find the thumbnail ID var thumbnailColumn: Int = 0 /* * The thumbnail URI, expressed as a String. * Contacts Provider stores URIs as String values. */ var thumbnailUri: String? = null ... cursor?.let { cursor -> /* * Gets the photo thumbnail column index if * platform version >= Honeycomb */ thumbnailColumn = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { cursor.getColumnIndex(ContactsContract.Contacts.PHOTO_THUMBNAIL_URI) // Otherwise, sets the thumbnail column to the _ID column } else { idColumn } /* * Assuming the current Cursor position is the contact you want, * gets the thumbnail ID */ thumbnailUri = cursor.getString(thumbnailColumn) }
Java
// The column in which to find the thumbnail ID int thumbnailColumn; /* * The thumbnail URI, expressed as a String. * Contacts Provider stores URIs as String values. */ String thumbnailUri; ... /* * Gets the photo thumbnail column index if * platform version >= Honeycomb */ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { thumbnailColumn = cursor.getColumnIndex(ContactsContract.Contacts.PHOTO_THUMBNAIL_URI); // Otherwise, sets the thumbnail column to the _ID column } else { thumbnailColumn = idColumn; } /* * Assuming the current Cursor position is the contact you want, * gets the thumbnail ID */ thumbnailUri = cursor.getString(thumbnailColumn); ...
कोई ऐसा तरीका तय करें जो संपर्क के लिए फ़ोटो से जुड़ा डेटा और डेस्टिनेशन व्यू के लिए डाइमेंशन लेता हो. साथ ही, Bitmap
में सही साइज़ का थंबनेल दिखाता हो. थंबनेल पर ले जाने वाला यूआरआई बनाकर शुरुआत करें:
Kotlin
/** * Load a contact photo thumbnail and return it as a Bitmap, * resizing the image to the provided image dimensions as needed. * @param photoData photo ID Prior to Honeycomb, the contact's _ID value. * For Honeycomb and later, the value of PHOTO_THUMBNAIL_URI. * @return A thumbnail Bitmap, sized to the provided width and height. * Returns null if the thumbnail is not found. */ private fun loadContactPhotoThumbnail(photoData: String): Bitmap? { // Creates an asset file descriptor for the thumbnail file var afd: AssetFileDescriptor? = null // try-catch block for file not found try { // Creates a holder for the URI val thumbUri: Uri = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { // If Android 3.0 or later, // sets the URI from the incoming PHOTO_THUMBNAIL_URI Uri.parse(photoData) } else { // Prior to Android 3.0, constructs a photo Uri using _ID /* * Creates a contact URI from the Contacts content URI * incoming photoData (_ID) */ val contactUri: Uri = Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_URI, photoData) /* * Creates a photo URI by appending the content URI of * Contacts.Photo */ Uri.withAppendedPath(contactUri, ContactsContract.Contacts.Photo.CONTENT_DIRECTORY) } /* * Retrieves an AssetFileDescriptor object for the thumbnail URI * using ContentResolver.openAssetFileDescriptor */ afd = activity?.contentResolver?.openAssetFileDescriptor(thumbUri, "r") /* * Gets a file descriptor from the asset file descriptor. * This object can be used across processes. */ return afd?.fileDescriptor?.let {fileDescriptor -> // Decodes the photo file and returns the result as a Bitmap // if the file descriptor is valid BitmapFactory.decodeFileDescriptor(fileDescriptor, null, null) } } catch (e: FileNotFoundException) { /* * Handle file not found errors */ null } finally { // In all cases, close the asset file descriptor try { afd?.close() } catch (e: IOException) { } } }
Java
/** * Load a contact photo thumbnail and return it as a Bitmap, * resizing the image to the provided image dimensions as needed. * @param photoData photo ID Prior to Honeycomb, the contact's _ID value. * For Honeycomb and later, the value of PHOTO_THUMBNAIL_URI. * @return A thumbnail Bitmap, sized to the provided width and height. * Returns null if the thumbnail is not found. */ private Bitmap loadContactPhotoThumbnail(String photoData) { // Creates an asset file descriptor for the thumbnail file AssetFileDescriptor afd = null; // try-catch block for file not found try { // Creates a holder for the URI Uri thumbUri; // If Android 3.0 or later if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { // Sets the URI from the incoming PHOTO_THUMBNAIL_URI thumbUri = Uri.parse(photoData); } else { // Prior to Android 3.0, constructs a photo Uri using _ID /* * Creates a contact URI from the Contacts content URI * incoming photoData (_ID) */ final Uri contactUri = Uri.withAppendedPath( ContactsContract.Contacts.CONTENT_URI, photoData); /* * Creates a photo URI by appending the content URI of * Contacts.Photo */ thumbUri = Uri.withAppendedPath( contactUri, ContactsContract.Contacts.Photo.CONTENT_DIRECTORY); } /* * Retrieves an AssetFileDescriptor object for the thumbnail URI * using ContentResolver.openAssetFileDescriptor */ afd = getActivity().getContentResolver(). openAssetFileDescriptor(thumbUri, "r"); /* * Gets a file descriptor from the asset file descriptor. * This object can be used across processes. */ FileDescriptor fileDescriptor = afd.getFileDescriptor(); // Decodes the photo file and returns the result as a Bitmap // if the file descriptor is valid if (fileDescriptor != null) { // Decodes the bitmap return BitmapFactory.decodeFileDescriptor( fileDescriptor, null, null); } // If the file isn't found } catch (FileNotFoundException e) { /* * Handle file not found errors */ // In all cases, close the asset file descriptor } finally { if (afd != null) { try { afd.close(); } catch (IOException e) {} } } return null; }
Bitmap
का थंबनेल पाने के लिए, अपने कोड में loadContactPhotoThumbnail()
तरीके को कॉल करें और मिलने वाले नतीजे का इस्तेमाल करके, अपने QuickContactBadge
में फ़ोटो का थंबनेल सेट करें:
Kotlin
... /* * Decodes the thumbnail file to a Bitmap */ mThumbnailUri?.also { thumbnailUri -> loadContactPhotoThumbnail(thumbnailUri).also { thumbnail -> /* * Sets the image in the QuickContactBadge. * QuickContactBadge inherits from ImageView. */ badge.setImageBitmap(thumbnail) } }
Java
... /* * Decodes the thumbnail file to a Bitmap */ Bitmap mThumbnail = loadContactPhotoThumbnail(thumbnailUri); /* * Sets the image in the QuickContactBadge. * QuickContactBadge inherits from ImageView. */ badge.setImageBitmap(mThumbnail);
ListView में QuickContactBadge जोड़ना
QuickContactBadge
, ListView
के साथ इस्तेमाल करने के लिए एक बेहतर विकल्प है. इससे संपर्कों की सूची दिखती है. हर संपर्क की थंबनेल फ़ोटो दिखाने के लिए,
QuickContactBadge
का इस्तेमाल करें. जब उपयोगकर्ता
थंबनेल पर टैप करते हैं, तो उन्हें QuickContactBadge
डायलॉग दिखता है.
QuickContactBadge एलिमेंट जोड़ें
शुरू करने के लिए, अपने आइटम लेआउट में QuickContactBadge
व्यू एलिमेंट जोड़ें
उदाहरण के लिए, अगर आपको QuickContactBadge
और हर उस संपर्क का नाम दिखाना है जो आपने वापस पाया है, तो लेआउट फ़ाइल में यह एक्सएमएल डालें:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content"> <QuickContactBadge android:id="@+id/quickcontact" android:layout_height="wrap_content" android:layout_width="wrap_content" android:scaleType="centerCrop"/> <TextView android:id="@+id/displayname" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_toRightOf="@+id/quickcontact" android:gravity="center_vertical" android:layout_alignParentRight="true" android:layout_alignParentTop="true"/> </RelativeLayout>
नीचे दिए गए सेक्शन में, इस फ़ाइल को contact_item_layout.xml
कहा गया है.
कस्टम CursorAdapter सेट अप करना
CursorAdapter
को QuickContactBadge
वाले ListView
से बाइंड करने के लिए, CursorAdapter
तक चलने वाला कस्टम अडैप्टर तय करें. इस तरीके से, QuickContactBadge
से लिंक करने से पहले, Cursor
में डेटा को प्रोसेस किया जा सकता है. इस तरीके से, QuickContactBadge
में कई
Cursor
कॉलम भी बांधे जा सकते हैं. ये दोनों ऑपरेशन, सामान्य CursorAdapter
में नहीं किए जा सकते.
आपके तय किए गए CursorAdapter
के सबक्लास को, इन तरीकों को बदलना होगा:
CursorAdapter.newView()
-
आइटम लेआउट को होल्ड करने के लिए, एक नया
View
ऑब्जेक्ट इनफ्लेट करता है. इस तरीके को बदलने पर, लेआउट के चाइल्डView
ऑब्जेक्ट में स्टोर हैंडल जोड़ा जाता है. इसमें चाइल्डQuickContactBadge
भी शामिल है. इस तरीके का इस्तेमाल करने पर, आपको हर बार नया लेआउट फ़्लोर करने पर, चाइल्डView
ऑब्जेक्ट के हैंडल पाने की ज़रूरत नहीं पड़ती.आपको इस तरीके को बदलना होगा, ताकि आपको अलग-अलग चाइल्ड
View
ऑब्जेक्ट के हैंडल मिल सकें. इस तकनीक की मदद से,CursorAdapter.bindView()
में उनकी बाइंडिंग को कंट्रोल किया जा सकता है. CursorAdapter.bindView()
-
डेटा को मौजूदा
Cursor
पंक्ति से आइटम लेआउट के चाइल्डView
ऑब्जेक्ट में ले जाता है. आपको इस तरीके को बदलना होगा, ताकि आपQuickContactBadge
से संपर्क के यूआरआई और थंबनेल, दोनों को बांध सकें. डिफ़ॉल्ट तौर पर लागू करने पर, किसी कॉलम औरView
के बीच सिर्फ़ एक-से-एक मैपिंग की अनुमति होती है.
नीचे दिए गए कोड स्निपेट में, CursorAdapter
के कस्टम सबक्लास का उदाहरण दिया गया है:
कस्टम लिस्ट अडैप्टर तय करें
CursorAdapter
के सब-क्लास के बारे में बताएं. इसमें इसके कंस्ट्रक्टर के साथ-साथ,
newView()
और
bindView()
को भी बदलें:
Kotlin
/** * Defines a class that holds resource IDs of each item layout * row to prevent having to look them up each time data is * bound to a row */ private data class ViewHolder( internal var displayname: TextView? = null, internal var quickcontact: QuickContactBadge? = null ) /** * * */ private inner class ContactsAdapter( context: Context, val inflater: LayoutInflater = LayoutInflater.from(context) ) : CursorAdapter(context, null, 0) { ... override fun newView( context: Context, cursor: Cursor, viewGroup: ViewGroup ): View { /* Inflates the item layout. Stores view references * in a ViewHolder class to prevent having to look * them up each time bindView() is called. */ return ContactListLayoutBinding.inflate(inflater, viewGroup, false).also { binding -> view.tag = ViewHolder().apply { displayname = binding.displayname quickcontact = binding.quickcontact } }.root } ... override fun bindView(view: View?, context: Context?, cursor: Cursor?) { (view?.tag as? ViewHolder)?.also { holder -> cursor?.apply { ... // Sets the display name in the layout holder.displayname?.text = getString(displayNameIndex) ... /* * Generates a contact URI for the QuickContactBadge */ ContactsContract.Contacts.getLookupUri( getLong(idIndex), cursor.getString(lookupKeyIndex) ).also { contactUri -> holder.quickcontact?.assignContactUri(contactUri) } getString(photoDataIndex)?.also {photoData -> /* * Decodes the thumbnail file to a Bitmap. * The method loadContactPhotoThumbnail() is defined * in the section "Set the contact URI and thumbnail." */ loadContactPhotoThumbnail(photoData)?.also { thumbnailBitmap -> /* * Sets the image in the QuickContactBadge. * QuickContactBadge inherits from ImageView. */ holder.quickcontact?.setImageBitmap(thumbnailBitmap) } } } } } }
Java
private class ContactsAdapter extends CursorAdapter { private LayoutInflater inflater; ... public ContactsAdapter(Context context) { super(context, null, 0); /* * Gets an inflater that can instantiate * the ListView layout from the file */ inflater = LayoutInflater.from(context); ... } ... /** * Defines a class that holds resource IDs of each item layout * row to prevent having to look them up each time data is * bound to a row */ private class ViewHolder { TextView displayname; QuickContactBadge quickcontact; } ... @Override public View newView( Context context, Cursor cursor, ViewGroup viewGroup) { /* Inflates the item layout. Stores view references * in a ViewHolder class to prevent having to look * them up each time bindView() is called. */ final ContactListLayoutBinding binding = ContactListLayoutBinding.inflate(inflater, viewGroup, false); final ViewHolder holder = new ViewHolder(); holder.displayname = binding.displayName; holder.quickcontact = binding.quickContact; view.setTag(holder); return binding.root; } ... @Override public void bindView( View view, Context context, Cursor cursor) { final ViewHolder holder = (ViewHolder) view.getTag(); final String photoData = cursor.getString(photoDataIndex); final String displayName = cursor.getString(displayNameIndex); ... // Sets the display name in the layout holder.displayname = cursor.getString(displayNameIndex); ... /* * Generates a contact URI for the QuickContactBadge */ final Uri contactUri = Contacts.getLookupUri( cursor.getLong(idIndex), cursor.getString(lookupKeyIndex)); holder.quickcontact.assignContactUri(contactUri); String photoData = cursor.getString(photoDataIndex); /* * Decodes the thumbnail file to a Bitmap. * The method loadContactPhotoThumbnail() is defined * in the section "Set the contact URI and thumbnail." */ Bitmap thumbnailBitmap = loadContactPhotoThumbnail(photoData); /* * Sets the image in the QuickContactBadge. * QuickContactBadge inherits from ImageView. */ holder.quickcontact.setImageBitmap(thumbnailBitmap); }
वैरिएबल सेट अप करना
इस उदाहरण में बताए गए तरीके के मुताबिक, अपने कोड में Cursor
प्रोजेक्शन के साथ वैरिएबल सेट अप करें, जिसमें ज़रूरी कॉलम शामिल हों.
ध्यान दें: यहां दिए गए कोड स्निपेट में, loadContactPhotoThumbnail()
तरीके का इस्तेमाल किया गया है. इस तरीके के बारे में, संपर्क यूआरआई और थंबनेल सेट करें सेक्शन में बताया गया है.
Kotlin
/* * Defines a projection based on platform version. This ensures * that you retrieve the correct columns. */ private val PROJECTION: Array<out String> = arrayOf( ContactsContract.Contacts._ID, ContactsContract.Contacts.LOOKUP_KEY, if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { ContactsContract.Contacts.DISPLAY_NAME_PRIMARY } else { ContactsContract.Contacts.DISPLAY_NAME }, if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { ContactsContract.Contacts.PHOTO_FILE_ID } else { /* * Although it's not necessary to include the * column twice, this keeps the number of * columns the same regardless of version */ ContactsContract.Contacts._ID } ) ... class ContactsFragment : Fragment(), LoaderManager.LoaderCallbacks<Cursor> { ... // Defines a ListView private val listView: ListView? = null // Defines a ContactsAdapter private val adapter: ContactsAdapter? = null ... // Defines a Cursor to contain the retrieved data private val cursor: Cursor? = null /* * As a shortcut, defines constants for the * column indexes in the Cursor. The index is * 0-based and always matches the column order * in the projection. */ // Column index of the _ID column private val idIndex = 0 // Column index of the LOOKUP_KEY column private val lookupKeyIndex = 1 // Column index of the display name column private val displayNameIndex = 3 /* * Column index of the photo data column. * It's PHOTO_THUMBNAIL_URI for Honeycomb and later, * and _ID for previous versions. */ private val photoDataIndex: Int = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) 3 else 0 ...
Java
public class ContactsFragment extends Fragment implements LoaderManager.LoaderCallbacks<Cursor> { ... // Defines a ListView private ListView listView; // Defines a ContactsAdapter private ContactsAdapter adapter; ... // Defines a Cursor to contain the retrieved data private Cursor cursor; /* * Defines a projection based on platform version. This ensures * that you retrieve the correct columns. */ private static final String[] PROJECTION = { ContactsContract.Contacts._ID, ContactsContract.Contacts.LOOKUP_KEY, (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) ? ContactsContract.Contacts.DISPLAY_NAME_PRIMARY : ContactsContract.Contacts.DISPLAY_NAME (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) ? ContactsContract.Contacts.PHOTO_FILE_ID : /* * Although it's not necessary to include the * column twice, this keeps the number of * columns the same regardless of version */ ContactsContract.Contacts._ID }; /* * As a shortcut, defines constants for the * column indexes in the Cursor. The index is * 0-based and always matches the column order * in the projection. */ // Column index of the _ID column private int idIndex = 0; // Column index of the LOOKUP_KEY column private int lookupKeyIndex = 1; // Column index of the display name column private int displayNameIndex = 3; /* * Column index of the photo data column. * It's PHOTO_THUMBNAIL_URI for Honeycomb and later, * and _ID for previous versions. */ private int photoDataIndex = Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB ? 3 : 0; ...
ListView सेट अप करना
Fragment.onCreate()
में, कस्टम कर्सर अडैप्टर
को इंस्टैंशिएट करें और ListView
को हैंडल करें:
Kotlin
override fun onCreateView( inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle? ): View? { return FragmentListViewBinding.inflate(...).let { binding -> ... /* * Gets a handle to the ListView in the file * contact_list_layout.xml */ listView = binding.contactList mAdapter?.also { listView?.adapter = it } ... }.root } ...
Java
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { FragmentListViewBinding binding = FragmentListViewBinding.inflate(...) ... /* * Gets a handle to the ListView in the file * contact_list_layout.xml */ if (binding.contactListView != null && adapter != null) { binding.contactListView.setAdapter(adapter); } ... } ...
onViewCreated()
में, ContactsAdapter
को
ListView
से बाइंड करें:
Kotlin
override fun onViewCreated(view: View, savedInstanceState: Bundle?) { super.onViewCreated(view, savedInstanceState) /* * Instantiates the subclass of * CursorAdapter */ mAdapter = activity?.let { ContactsAdapter(it).also { adapter -> // Sets up the adapter for the ListView listView?.adapter = adapter } } }
Java
@Override public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) { ... /* * Instantiates the subclass of * CursorAdapter */ mAdapter = new ContactsAdapter(getActivity()); // Sets up the adapter for the ListView if (listView != null && mAdapter != null) { listView.setAdapter(mAdapter); } ... } ...
जब आपको ऐसा Cursor
वापस मिलता है जिसमें संपर्क डेटा मौजूद होता है, तो आम तौर पर
onLoadFinished()
में होने पर,
Cursor
डेटा को ListView
में ले जाने के लिए, swapCursor()
पर कॉल करें. इससे संपर्कों की सूची में हर एंट्री के लिए, QuickContactBadge
दिखता है.
Kotlin
override fun onLoadFinished(loader: Loader<Cursor>, cursor: Cursor) { // When the loader has completed, swap the cursor into the adapter mAdapter?.swapCursor(cursor) }
Java
public void onLoadFinished(Loader<Cursor> loader, Cursor cursor) { // When the loader has completed, swap the cursor into the adapter mAdapter.swapCursor(cursor); }
जब किसी Cursor
को CursorAdapter
(या सबक्लास) के साथ ListView
से बंधा जाता है और Cursor
को लोड करने के लिए CursorLoader
का इस्तेमाल किया जाता है, तो onLoaderReset()
को लागू करते समय, Cursor
के रेफ़रंस हमेशा हटा दें.
यह नीचे दिए गए उदाहरण में दिखाया गया है:
Kotlin
override fun onLoaderReset(loader: Loader<Cursor>) { // Removes remaining reference to the previous Cursor adapter?.swapCursor(null) }
Java
@Override public void onLoaderReset(Loader<Cursor> loader) { // Removes remaining reference to the previous Cursor adapter.swapCursor(null); }