diff options
author | Marvin Borner | 2018-07-24 20:28:47 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-24 20:28:47 +0200 |
commit | 4ada3652d88e7a97680759c44ee7b39953a867a7 (patch) | |
tree | 44d003d19e5e9f38d7a5ae9c25fb808c83109729 /app/src/main/res/layout/fragment_main.xml | |
parent | 43fb95de3fb3e825a6cbf0de68bd965556b73a75 (diff) |
Added transitions and fixed some design issues
Diffstat (limited to 'app/src/main/res/layout/fragment_main.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_main.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_main.xml b/app/src/main/res/layout/fragment_main.xml new file mode 100644 index 0000000..108217e --- /dev/null +++ b/app/src/main/res/layout/fragment_main.xml @@ -0,0 +1,23 @@ +<?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:id="@+id/constraintLayout" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:context=".MainActivity$PlaceholderFragment"> + + <TextView + android:id="@+id/section_label" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginBottom="@dimen/activity_vertical_margin" + android:layout_marginEnd="@dimen/activity_horizontal_margin" + android:layout_marginStart="@dimen/activity_horizontal_margin" + android:layout_marginTop="@dimen/activity_vertical_margin" + app:layout_constraintLeft_toLeftOf="parent" + app:layout_constraintTop_toTopOf="@+id/constraintLayout" + tools:layout_constraintLeft_creator="1" + tools:layout_constraintTop_creator="1" /> + +</android.support.constraint.ConstraintLayout>
\ No newline at end of file |