2016-05-13 09:45:36 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-05-13 09:45:36 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-03-09 18:59:17 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_gravity="center">
|
2016-05-13 09:45:36 -04:00
|
|
|
|
2020-03-09 18:59:17 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_face"
|
|
|
|
style="@style/TextAppearance.Medium.Body2.Hint"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="48sp"
|
|
|
|
tools:text="-_-" />
|
2016-05-13 09:45:36 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_label"
|
|
|
|
style="@style/TextAppearance.Medium.Body2.Hint"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-03-09 18:59:17 -04:00
|
|
|
android:layout_below="@+id/text_face"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_margin="16dp"
|
2020-03-09 18:59:17 -04:00
|
|
|
android:gravity="center"
|
|
|
|
tools:text="Label" />
|
2016-05-13 09:45:36 -04:00
|
|
|
|
|
|
|
</RelativeLayout>
|