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