-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_users.xml
37 lines (29 loc) · 1.29 KB
/
activity_users.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".UsersActivity">
<include layout="@layout/app_bar_layout" android:id="@+id/users_appBar"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_below="@+id/users_appBar"
android:layout_alignParentLeft="true">
<!-- **** Place Your Content Here **** -->
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@drawable/toolbar_dropshadow" />
</FrameLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/users_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_below="@+id/users_appBar"
android:layout_alignParentLeft="true">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>