• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<merge xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:app="http://schemas.android.com/apk/res-auto"
4    xmlns:tools="http://schemas.android.com/tools"
5    tools:parentTag="android.widget.FrameLayout">
6
7    <androidx.cardview.widget.CardView
8        android:id="@+id/cardView"
9        android:layout_width="196dp"
10        android:layout_height="108dp"
11        android:layout_marginBottom="16dp"
12        android:layout_marginLeft="8dp"
13        android:layout_marginRight="8dp"
14        android:layout_marginTop="16dp"
15        app:cardCornerRadius="12dp">
16
17        <ImageView
18            android:id="@+id/imageView"
19            android:layout_width="wrap_content"
20            android:layout_height="wrap_content"
21            android:layout_gravity="top|right"/>
22
23        <TextView
24            android:id="@+id/titleView"
25            android:layout_width="wrap_content"
26            android:layout_height="wrap_content"
27            android:layout_gravity="bottom"
28            android:layout_marginBottom="12dp"
29            android:layout_marginLeft="12dp"
30            android:textColor="@color/text_color_dark"
31            android:textSize="20sp"/>
32    </androidx.cardview.widget.CardView>
33</merge>