| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | xmlns:app="http://schemas.android.com/apk/res-auto" |
| 4 | xmlns:tools="http://schemas.android.com/tools" |
| 5 | android:id="@+id/Main" |
| 6 | android:layout_width="match_parent" |
| 7 | android:layout_height="match_parent" |
| 8 | tools:context=".AndroidReaderActivity"> |
| 9 | |
| 10 | <Button |
| 11 | android:id="@+id/Main_btnAdd" |
| 12 | android:layout_width="wrap_content" |
| 13 | android:layout_height="wrap_content" |
| 14 | android:layout_marginEnd="8dp" |
| 15 | android:layout_marginStart="8dp" |
| 16 | android:layout_marginTop="8dp" |
| 17 | android:onClick="onAdd" |
| 18 | android:text="Add story" |
| 19 | app:layout_constraintEnd_toEndOf="parent" |
| 20 | app:layout_constraintHorizontal_bias="0.472" |
| 21 | app:layout_constraintStart_toStartOf="parent" |
| 22 | app:layout_constraintTop_toTopOf="parent" /> |
| 23 | |
| 24 | <LinearLayout |
| 25 | android:id="@+id/Main_pnlStories" |
| 26 | android:layout_width="0dp" |
| 27 | android:layout_height="0dp" |
| 28 | android:layout_marginBottom="8dp" |
| 29 | android:layout_marginEnd="8dp" |
| 30 | android:layout_marginStart="8dp" |
| 31 | android:layout_marginTop="8dp" |
| 32 | android:orientation="vertical" |
| 33 | app:layout_constraintBottom_toBottomOf="parent" |
| 34 | app:layout_constraintEnd_toEndOf="parent" |
| 35 | app:layout_constraintStart_toStartOf="parent" |
| 36 | app:layout_constraintTop_toBottomOf="@+id/Main_btnAdd"></LinearLayout> |
| 37 | |
| 38 | </android.support.constraint.ConstraintLayout> |