emotionhero/app/src/main/res/layout/snapshot_check.xml

75 lines
2.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:elevation="1dp"
android:id="@+id/snapshotLayout">
<TextView
android:text="While using this game, you can contribute snapshots of certain facial features to a central piece.\nNote that solely the following features are shared:"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:id="@+id/textView3"
android:layout_marginLeft="@dimen/fab_margin"
android:layout_marginRight="@dimen/fab_margin" />
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/textView3"
android:layout_centerHorizontal="true"
android:layout_margin="@dimen/fab_margin"
android:id="@+id/imageGrid">
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center">
<ImageView
android:layout_width="120dp"
android:layout_height="wrap_content"
app:srcCompat="@drawable/example_mouth"
android:id="@+id/imageView4"
android:layout_weight="1"
android:adjustViewBounds="true" />
<ImageView
android:layout_width="120dp"
android:layout_height="wrap_content"
app:srcCompat="@drawable/example_brow"
android:id="@+id/imageView2"
android:layout_weight="1"
android:adjustViewBounds="true"
android:layout_marginTop="@dimen/appbar_padding_top" />
</LinearLayout>
<ImageView
android:layout_width="120dp"
android:layout_height="match_parent"
app:srcCompat="@drawable/example_nose"
android:id="@+id/imageView3"
android:layout_weight="1"
android:adjustViewBounds="false" />
</LinearLayout>
<TextView
android:text="For more information see emotionhero.com.\nYou can always change these settings later."
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageGrid"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="@dimen/fab_margin"
android:layout_marginRight="@dimen/fab_margin"
android:id="@+id/lastText" />
</RelativeLayout>