diff options
author | Marvin Borner | 2018-09-13 22:09:17 +0200 |
---|---|---|
committer | Marvin Borner | 2018-09-13 22:09:17 +0200 |
commit | 85509c84cfb00830d56185c2d7bc1fb0357be944 (patch) | |
tree | 5ec7c7527efcd4c060a961e20e3ea6ea4892925f /app/src/main/res/layout/content_main.xml | |
parent | db6887daf259f7d919493223002784ddd739249e (diff) |
Added better post layout :lipstick: :sparkles:
Diffstat (limited to 'app/src/main/res/layout/content_main.xml')
-rw-r--r-- | app/src/main/res/layout/content_main.xml | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/app/src/main/res/layout/content_main.xml b/app/src/main/res/layout/content_main.xml index c892763..7c7ef1e 100644 --- a/app/src/main/res/layout/content_main.xml +++ b/app/src/main/res/layout/content_main.xml @@ -16,10 +16,36 @@ app:layout_constraintTop_toTopOf="parent"> <LinearLayout - android:id="@+id/post_list" android:layout_width="match_parent" android:layout_height="wrap_content" - android:orientation="vertical" /> + android:orientation="vertical"> + + <LinearLayout + android:id="@+id/compose_post" + android:layout_width="match_parent" + android:layout_height="124dp" + android:layout_marginBottom="16dp" + android:layout_marginEnd="16dp" + android:layout_marginStart="16dp" + android:layout_marginTop="16dp" + android:orientation="vertical"> + + <EditText + android:id="@+id/text_post_compose" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:ems="10" + android:hint="@string/text_post_compose_hint" + android:inputType="textMultiLine" /> + + </LinearLayout> + + <LinearLayout + android:id="@+id/post_list" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical"></LinearLayout> + </LinearLayout> </ScrollView> </android.support.constraint.ConstraintLayout>
\ No newline at end of file |