diff options
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 |