কার্ডেও ট্রতিটা পার্শ্ব পৃথক লেআউট যা আপনি যা চান সেই কনটেন্ট ধারন করে, যেমন টেক্সটের দুইটা স্ক্রিন, দুইটা ইমেজ, বা ফ্লিপের মধ্যে ভিউয়ের যে কোন সমাহার। আপনি তখন ফ্রাগমেন্টে দুইটা লেআউট ব্যবহার করতে পারেন যা আপনি পরে অ্যানিমেট করতে পারবেন। নীচের লেআউট একটি কার্ডেও একটি পার্শ্ব তৈরী করে যা টেক্সট দেখায়:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#a6c"
android:padding="16dp"
android:gravity="bottom">
<TextView android:id="@android:id/text1"
style="?android:textAppearanceLarge"
android:textStyle="bold"
android:textColor="#fff"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/card_back_title" />
<TextView style="?android:textAppearanceSmall"
android:textAllCaps="true"
android:textColor="#80ffffff"
android:textStyle="bold"
android:lineSpacingMultiplier="1.2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/card_back_description" />
</LinearLayout>
এবং কার্ডের অপর পার্শ্ব যা একটি ImageView প্রদর্শন করে:
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/image1"
android:scaleType="centerCrop"
android:contentDescription="@string/description_image_1" />