বাংলায় অ্যান্ড্রয়েড সহায়িকা - Bangla Android Guide

QuickContactBadge এলিমেন্ট যোগ করুন

শুরু করতে, আপনার আইটেম লেআউটে একটি QuickContactBadge ভিউ এলিমেন্ট যোগ করুন। উদাহরণস্বরূপ, আপনি যদি একটি QuickContactBadge এবং আপনি যে কনট্যাক্ট উদ্ধার করেছেন তার প্রতিটার জন্য নাম প্রদর্শন করতে, একটি লেআউট ফাইলের মধ্যে নিম্নোক্ত XML রাখুন:

<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 হিসাবে বলা হয়।