Commit af4d700c authored by Varun Patil's avatar Varun Patil

Add labels to body fragment for recycler views

parent 49a4328c
...@@ -126,6 +126,14 @@ ...@@ -126,6 +126,14 @@
android:textColor="#777" android:textColor="#777"
android:textSize="16sp" /> android:textSize="16sp" />
<TextView
android:text="Events"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:textSize="20sp"
android:fontFamily="sans-serif-light" />
<android.support.v7.widget.RecyclerView <android.support.v7.widget.RecyclerView
android:id="@+id/event_card_recycler_view" android:id="@+id/event_card_recycler_view"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -133,6 +141,14 @@ ...@@ -133,6 +141,14 @@
android:layout_marginTop="10dp" android:layout_marginTop="10dp"
android:nestedScrollingEnabled="false" /> android:nestedScrollingEnabled="false" />
<TextView
android:text="Organizations"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:textSize="20sp"
android:fontFamily="sans-serif-light" />
<android.support.v7.widget.RecyclerView <android.support.v7.widget.RecyclerView
android:id="@+id/org_card_recycler_view" android:id="@+id/org_card_recycler_view"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -140,6 +156,14 @@ ...@@ -140,6 +156,14 @@
android:layout_marginTop="10dp" android:layout_marginTop="10dp"
android:nestedScrollingEnabled="false" /> android:nestedScrollingEnabled="false" />
<TextView
android:text="People"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:textSize="20sp"
android:fontFamily="sans-serif-light" />
<android.support.v7.widget.RecyclerView <android.support.v7.widget.RecyclerView
android:id="@+id/people_card_recycler_view" android:id="@+id/people_card_recycler_view"
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -147,6 +171,14 @@ ...@@ -147,6 +171,14 @@
android:layout_marginTop="10dp" android:layout_marginTop="10dp"
android:nestedScrollingEnabled="false" /> android:nestedScrollingEnabled="false" />
<TextView
android:text="Part of"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:textSize="20sp"
android:fontFamily="sans-serif-light" />
<android.support.v7.widget.RecyclerView <android.support.v7.widget.RecyclerView
android:id="@+id/parentorg_card_recycler_view" android:id="@+id/parentorg_card_recycler_view"
android:layout_width="match_parent" android:layout_width="match_parent"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment