diff options
author | Marvin Borner | 2018-09-08 20:18:42 +0200 |
---|---|---|
committer | Marvin Borner | 2018-09-08 20:18:42 +0200 |
commit | 7c41a4da70c2aa0ec6ade1c7b3ec0fa74edffbdf (patch) | |
tree | 2517a6f3678786b46108e66e97d7a819bf87f793 /app/src/main/res/layout/content_main.xml | |
parent | 1f100b2221ab66087e3f5932cef4b73ec912f0dd (diff) |
Began basic text displaying feature :sparkles:
Diffstat (limited to 'app/src/main/res/layout/content_main.xml')
-rw-r--r-- | app/src/main/res/layout/content_main.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/src/main/res/layout/content_main.xml b/app/src/main/res/layout/content_main.xml index c649451..c892763 100644 --- a/app/src/main/res/layout/content_main.xml +++ b/app/src/main/res/layout/content_main.xml @@ -8,4 +8,18 @@ tools:context=".MainActivity" tools:showIn="@layout/activity_main"> + <ScrollView + android:layout_width="match_parent" + android:layout_height="wrap_content" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent"> + + <LinearLayout + android:id="@+id/post_list" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" /> + </ScrollView> + </android.support.constraint.ConstraintLayout>
\ No newline at end of file |