mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
49 lines
2.1 KiB
XML
49 lines
2.1 KiB
XML
<?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"
|
|
tools:context="com.example.corwinperren.httpoauth.MainActivity">
|
|
|
|
<Button
|
|
android:id="@+id/gplus_login_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:text="G+ Login"
|
|
app:layout_constraintBottom_toTopOf="@+id/show_posts_button"
|
|
app:layout_constraintLeft_toLeftOf="@+id/show_posts_button"
|
|
app:layout_constraintRight_toRightOf="@+id/show_posts_button" />
|
|
|
|
<Button
|
|
android:id="@+id/show_posts_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="8dp"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:layout_marginTop="8dp"
|
|
android:text="Show Posts"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintVertical_bias="0.501" />
|
|
|
|
<Button
|
|
android:id="@+id/submit_new_post_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="0dp"
|
|
android:layout_marginTop="8dp"
|
|
android:text="Submit New Post"
|
|
app:layout_constraintLeft_toLeftOf="@+id/show_posts_button"
|
|
app:layout_constraintRight_toRightOf="@+id/show_posts_button"
|
|
app:layout_constraintTop_toBottomOf="@+id/show_posts_button" />
|
|
|
|
</android.support.constraint.ConstraintLayout>
|