| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?xml version="1.0" encoding="utf-8"?>
- <android.support.constraint.ConstraintLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@android:color/white"
- tools:fragmentActivity=".MainActivity">
- <LinearLayout
- android:layout_width="match_parent"
- android:gravity="bottom"
- android:layout_height="match_parent"
- android:orientation="horizontal">
- <Button
- android:id="@+id/button_sign_up"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Sign Up"/>
- <!--<Button-->
- <!--android:id="@+id/button_test"-->
- <!--android:layout_width="wrap_content"-->
- <!--android:layout_height="wrap_content"-->
- <!--android:text="Test"/>-->
- <Space
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"/>
- <Button
- android:id="@+id/button_clear"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Clear Data"/>
- </LinearLayout>
- <LinearLayout
- android:id="@+id/container"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- </LinearLayout>
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/splash_logo"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"/>
- </android.support.constraint.ConstraintLayout>
|