2016-05-13 15:45:36 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 00:43:50 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-05-13 15:45:36 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:layout_gravity="center">
|
2016-05-13 15:45:36 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2016-05-13 15:45:36 +02:00
|
|
|
android:id="@+id/image_view"
|
|
|
|
android:layout_width="128dp"
|
|
|
|
android:layout_height="128dp"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:layout_centerHorizontal="true" />
|
2016-05-13 15:45:36 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_label"
|
|
|
|
style="@style/TextAppearance.Medium.Body2.Hint"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/image_view"
|
2020-02-22 00:43:50 +01:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:gravity="center" />
|
2016-05-13 15:45:36 +02:00
|
|
|
|
|
|
|
</RelativeLayout>
|