Display user posts

This commit is contained in:
Pierre HUBERT
2018-07-31 10:30:10 +02:00
parent 0c7c2cbead
commit 483cf40cec
5 changed files with 258 additions and 5 deletions

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical">
<Button
android:id="@+id/create_post_btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/action_create_post"/>
<!-- Posts form target -->
<FrameLayout
android:id="@+id/create_posts_form_target"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout="@layout/post_create_form" />
<!-- Posts target -->
<FrameLayout
android:id="@+id/posts_list_target"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
tools:layout="@layout/fragment_postslist"/>
</LinearLayout>