2016-05-13 09:45:36 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-03-09 18:45:38 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-09 18:59:17 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-03-09 18:45:38 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="16dp">
|
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: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-02-21 18:43:50 -05:00
|
|
|
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
|
|
|
|
2020-03-09 18:45:38 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/actions_container"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
|
|
|
|
</LinearLayout>
|