2021-05-31 14:29:11 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-06-01 15:43:37 +10:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingVertical="@dimen/medium_spacing"
|
|
|
|
android:paddingHorizontal="@dimen/massive_spacing"
|
2021-06-01 13:01:03 +10:00
|
|
|
android:gravity="center">
|
2021-05-31 14:29:11 +10:00
|
|
|
|
2021-06-01 15:43:37 +10:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/iconImageView"
|
2021-06-22 15:55:32 +10:00
|
|
|
android:layout_width="12dp"
|
|
|
|
android:layout_height="12dp"
|
2021-06-01 15:43:37 +10:00
|
|
|
android:layout_marginBottom="@dimen/small_spacing" />
|
|
|
|
|
2021-05-31 14:29:11 +10:00
|
|
|
<TextView
|
2021-06-01 13:01:03 +10:00
|
|
|
android:id="@+id/textView"
|
2021-06-25 14:06:53 +10:00
|
|
|
android:layout_width="match_parent"
|
2021-05-31 14:29:11 +10:00
|
|
|
android:layout_height="wrap_content"
|
2021-06-22 15:55:32 +10:00
|
|
|
android:textSize="@dimen/very_small_font_size"
|
2021-06-01 15:43:37 +10:00
|
|
|
android:textColor="@color/text"
|
2021-06-22 15:55:32 +10:00
|
|
|
android:textStyle="bold"
|
2021-06-01 15:43:37 +10:00
|
|
|
android:gravity="center" />
|
2021-05-31 14:29:11 +10:00
|
|
|
|
|
|
|
</LinearLayout>
|